[mezzanine-users] Re: page_processor.py for HomePage

2015-10-16 Thread Nkansah Rexford
Figured it out. Caching, oooh Caching. I had memcached shutdown, no idea where things were being cached, as I hard refresh pages all the time. thanks On Friday, October 16, 2015 at 11:52:13 AM UTC, Nkansah Rexford wrote: > > I have this in default mezza urls > url("^$",

[mezzanine-users] Changing Blog List Images Sizes

2015-10-16 Thread Tommy Long
This is probably a simple question so forgive me. I'm trying to find out a why to change the images that appear on my blog list page to show thumbnails and not full size images, when a user clicks on them they will be taken to the blog post page where the full size image will be shown. The

Re: [mezzanine-users] Akismet spam filtering with Python 3

2015-10-16 Thread Christian Hill
OK -- I've fixed things in my own installation so that spam is being filtered and I've sent a pull request. On 16 October 2015 at 00:08, Stephen McDonald wrote: > Sounds like a bug, patch welcome. > > On Fri, Oct 16, 2015 at 10:06 AM, Christian Hill > wrote:

Re: [mezzanine-users] Cannot edit content on Rich Text Page

2015-10-16 Thread Ilya Yakunin
Yes, I have another Mezzanine 3 project working under Apache virtual host. Everything works well in that case. The problem occurs only with new Mezzanine 4 project running under its own virtualenv. Cache reloading didn't help 2015-10-15 18:19 GMT+03:00 Eduardo Rivas : >

[mezzanine-users] Using links

2015-10-16 Thread Iain Mac Donald
Never used links until this morning. I wanted to have a structure like this: Fruit Apples Bananas Pears Apples, Bananas and Pears are children of Fruit. I didn't want any content in Fruit and instead if someone clicked on Fruit it would go to the top child, in this example, Apples. So, I

[mezzanine-users] Re: Changing Blog List Images Sizes

2015-10-16 Thread Ross Laird
This is relatively straightforward. You will just need to modify the blog_post_list.html template (for the list), and/or the blog_post_detail.html template (for an individual post). Here is a bit of code that I use in blog_post_list.html to show thumbnail-type images on my own blog list page,

Re: [mezzanine-users] Re: Changing Blog List Images Sizes

2015-10-16 Thread Tommy Long
Ross, Thank you so much for helping me and showing me how you implement the code into your blog. I've tried changing my code to mirror yours but I still can't get it to work. I'm still figuring Mezzanine out lol. Here's my code below. {% for blog_post in blog_posts.object_list %} {%

Re: [mezzanine-users] Re: Changing Blog List Images Sizes

2015-10-16 Thread Eduardo Rivas
You're missing a closing curly brace in the tag. -- 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

Re: [mezzanine-users] Re: Changing Blog List Images Sizes

2015-10-16 Thread Tommy Long
Eduardo, Oops! Thanks for catching that. Been staring at this computer screen for too long apparently. God Bless, Tommy Long Check out my blog at www.technelogos.com/blog On Fri, Oct 16, 2015 at 11:01 PM, Eduardo Rivas wrote: > You're missing a closing