Re: [mezzanine-users] Forcing Page Link to open in new window

2015-08-24 Thread rjackson87
Hey Josh - I’m very new to Mezzanine and am still finding my way around. Which file (and where!) did you insert that jQuery snippet? Cheers! Rich -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop

[mezzanine-users] Basic PostgreSQL installation

2015-08-24 Thread Richard Jackson
Hi there, I've installed Django and had no problems with sorting out the PostgreSQL connection, but I can't seem to get Mezzanine to create tables in the specific database. When I set up a new Django project I get 10 different tables, but Mezzanine doesn't seem to create any. I've run python

[mezzanine-users] Re: Basic PostgreSQL installation

2015-08-24 Thread Micah Yoder
What kind of messages appear on the screen when you run manage.py createdb? I suspect it is a connection or permissions issue. You might try putting this in your pg_hba.conf file (which is normally in your data directory, except in Debian/Ubuntu): # local is for Unix domain socket connections

[mezzanine-users] Validating BlogPost model categories

2015-08-24 Thread Matt Hughes
Hi when i add a blog post via the admin page, how do i validate the categories? Ive tried overriding the 'clean()' method of BlogPost, which does get called, but not sure where to check for categories. when i submit a post via the admin, i want to make sure it has atleast one category. I