[mezzanine-users] Re: 'Show in Menus' options doesn't work

2015-11-26 Thread Nkansah Rexford
Had to set my this: http://mezzanine.jupo.org/docs/content-architecture.html#filtering-menus PAGE_MENU_TEMPLATES = ( (1, "Top navigation bar", "pages/menus/primary.html"), (2, "Left-hand tree", "pages/menus/tree.html"), ) Got it working now -- You received this message because you are

[mezzanine-users] Re: Issues Getting Category

2015-11-26 Thread R.J. Jackson
Hi, thank you it was helpful. I have a follow up question, lets say I wanted to do a check to see if category is == to a string, how can I do that? I have tried using the if tag but it doesn't work. On Wednesday, November 25, 2015 at 6:09:42 PM UTC-5, Nkansah Rexford wrote: > > Perhaps the

[mezzanine-users] Displaying excerpt content on blog homepage

2015-11-26 Thread wh4n
At the moment my blog displays only one image when there's two inserted. The text is not visible so I thought there might be a problem with excerpt settings or such. Do anybody know if there's a way for me to show the full content on every blog post on the blog homepage? -- You received this

Re: [mezzanine-users] Displaying excerpt content on blog homepage

2015-11-26 Thread wh4n
Worked perfectly! Thank you :) Den torsdag 26 november 2015 kl. 22:22:09 UTC+1 skrev Eduardo Rivas: > > The blog post list template displays blurbs using {{ > blog_post.description_from_content }}, which will get you the first or > so elements of the post. The full content is available as {{ >

Re: [mezzanine-users] Re: Issues Getting Category

2015-11-26 Thread Danny
On 27/11/2015 4:33 AM, R.J. Jackson wrote: Hi, thank you it was helpful. I have a follow up question, lets say I wanted to do a check to see if category is == to a string, how can I do that? Why not read up on Django template tags?

Re: [mezzanine-users] Displaying excerpt content on blog homepage

2015-11-26 Thread Danny
On 27/11/2015 7:52 AM, Eduardo Rivas wrote: The blog post list template displays blurbs using {{ blog_post.description_from_content }}, which will get you the first or so elements of the post. The full content is available as {{ blog_post.content }}. Don't forget to add the appropriate

Re: [mezzanine-users] Displaying excerpt content on blog homepage

2015-11-26 Thread Eduardo Rivas
The blog post list template displays blurbs using {{ blog_post.description_from_content }}, which will get you the first or so elements of the post. The full content is available as {{ blog_post.content }}. Don't forget to add the appropriate filters! -- You received this message because you