Re: [mezzanine-users] I need to put editable sections in my home page.

2015-04-29 Thread Stephen McDonald
You have a couple of problems:

1) The homepage isn't managed by a page object by default, as to the why
and how to get that working, see here:
http://mezzanine.jupo.org/docs/frequently-asked-questions.html#why-isn-t-the-homepage-a-page-object-i-can-edit-via-the-admin

2) You've misunderstood the way the editable tags work - in your example
you've hard-coded the text "Clean, Crisp, Powerful and Responsive Web
Design" rather than using the model field that will be edited. If you read
the docs carefully you'll see how this works:
http://mezzanine.jupo.org/docs/inline-editing.html#template-configuration

On Thu, Apr 30, 2015 at 1:22 AM, Ronald Espinoza <
ing.ronaldespin...@gmail.com> wrote:

>  Excuse josh.
> I could not interpret correctly to do according to your suggestion. My home
> page does not appear in the admin. At this page I'm getting you a custom
> design through free theme "flat". Simiilar to want to do something that can
> be done in django-cms, which establish the area where I want to edit the
> html. So that the user can change that part when you want.
> In django-cms it would be something like this:
> {% block contentleft %}
> {% placeholder "contentleft2" %}
> {% endblock contentleft %}
> Probe everything I could in documenting mezzanine and I failed, I need to
> do so urgently.
>
> http://orotau-docs-mezzanine.readthedocs.org/en/latest/inline-editing.html#template-configuration
>
> 2015-04-28 10:00 GMT-05:00 Josh Cartmell :
>
>> Hi Ronald, if page is a mezzanine page, it doesn't have any content.  The
>> content would be added by a subclass, for example RichTextPage.  Take a
>> look at the RichTextPage template for a good example:
>>
>>
>> https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/pages/templates/pages/richtextpage.html
>>
>> On Tue, Apr 28, 2015 at 9:38 AM, Ronald Espinoza <
>> ing.ronaldespin...@gmail.com> wrote:
>>
>>>
>>> I already tried with documentation "Mezzanine", And there have been good 
>>> results.
>>> 
>>> {% editable page.content %}
>>> Clean, Crisp, Powerful and Responsive Web Design
>>> {% endeditable %}
>>> 
>>>
>>>
>>> 
>>>
>>>  --
>>> You received this message because you are subscribed to the Google
>>> Groups "Mezzanine Users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to mezzanine-users+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Mezzanine Users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/mezzanine-users/SkPAg4XfVKM/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> mezzanine-users+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Mezzanine Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Stephen McDonald
http://jupo.org

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] I need to put editable sections in my home page.

2015-04-29 Thread Ronald Espinoza
 Excuse josh.
I could not interpret correctly to do according to your suggestion. My home
page does not appear in the admin. At this page I'm getting you a custom
design through free theme "flat". Simiilar to want to do something that can
be done in django-cms, which establish the area where I want to edit the
html. So that the user can change that part when you want.
In django-cms it would be something like this:
{% block contentleft %}
{% placeholder "contentleft2" %}
{% endblock contentleft %}
Probe everything I could in documenting mezzanine and I failed, I need to
do so urgently.
http://orotau-docs-mezzanine.readthedocs.org/en/latest/inline-editing.html#template-configuration

2015-04-28 10:00 GMT-05:00 Josh Cartmell :

> Hi Ronald, if page is a mezzanine page, it doesn't have any content.  The
> content would be added by a subclass, for example RichTextPage.  Take a
> look at the RichTextPage template for a good example:
>
>
> https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/pages/templates/pages/richtextpage.html
>
> On Tue, Apr 28, 2015 at 9:38 AM, Ronald Espinoza <
> ing.ronaldespin...@gmail.com> wrote:
>
>>
>> I already tried with documentation "Mezzanine", And there have been good 
>> results.
>> 
>> {% editable page.content %}
>> Clean, Crisp, Powerful and Responsive Web Design
>> {% endeditable %}
>> 
>>
>>
>> 
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Mezzanine Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to mezzanine-users+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "Mezzanine Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/mezzanine-users/SkPAg4XfVKM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] I need to put editable sections in my home page.

2015-04-28 Thread Josh Cartmell
Hi Ronald, if page is a mezzanine page, it doesn't have any content.  The
content would be added by a subclass, for example RichTextPage.  Take a
look at the RichTextPage template for a good example:

https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/pages/templates/pages/richtextpage.html

On Tue, Apr 28, 2015 at 9:38 AM, Ronald Espinoza <
ing.ronaldespin...@gmail.com> wrote:

>
> I already tried with documentation "Mezzanine", And there have been good 
> results.
> 
> {% editable page.content %}
> Clean, Crisp, Powerful and Responsive Web Design
> {% endeditable %}
> 
>
>
> 
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Mezzanine Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] I need to put editable sections in my home page.

2015-04-28 Thread Ronald Espinoza



I already tried with documentation "Mezzanine", And there have been good 
results.

{% editable page.content %}
Clean, Crisp, Powerful and Responsive Web Design
{% endeditable %}




-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.