Re: [mezzanine-users] How can I debug this admin registration problem?

2016-04-11 Thread Rodrigo Gadea
I'm having the same issue but when trying to filter the FK of an Inline Formset to customize the checkout process. In my case it seems to be because I can't get to initialize the inline properly (haven't tackled it yet) for each Cart Item. I get the same error as you, so it is probably in the

[mezzanine-users] How can I debug this admin registration problem?

2016-04-11 Thread Geoff P
Hi everyone, My issue is that the Slide info is not showing in the admin page of the site, but the stuff in the HomePage class is. I'm wondering if anyone has had a similar problem, or if anyone has any tips on how to debug. Thanks for taking a look! Here's my setup: Python 2.7.8 Django

[mezzanine-users] Re: Mezzanine's core bootstrap.css is preferred over an app's version?

2016-04-11 Thread Eduardo Rivas
Is the app that defines your custom version of Bootstrap listed before "mezzanine.core" in INSTALLED_APPS? In general I include all frontend customizations in a "theme" app and insert it just before "mezzanine.core" in the list of apps to make sure it always takes precedence. -- You received

Re: [mezzanine-users] Check if page has child pages

2016-04-11 Thread Geoffrey Eisenbarth
Did anything like this ever get implemented into mezzanine? I was looking to do something similar, add a sidebar in the base.html if the given page has children. What was your fix? On Wednesday, November 11, 2015 at 5:56:20 PM UTC-6, Neum Schmickrath wrote: > > Thanks for the reply Danny. The

Re: [mezzanine-users] Re: "Thumbnails" showing up at full-size on production server

2016-04-11 Thread Eduardo Rivas
Hi Marcio. There's a lot that can go wrong when generating a thumbnail for a particular image (missing dependencies, filesystem permission errors, IO errors, etc), and Mezzanine will just return the original image if that happens. I recommend you take a look at the code

Re: [mezzanine-users] Exclude some fields from profile update form mezzanine

2016-04-11 Thread Eduardo Rivas
Hi David. Are you familiar with Django forms in general? Mezzanine's default ProfileForm sets up a flag (self._signup) to indicate if the current form instance is handling a signup or a profile update. You

[mezzanine-users] Re: "Thumbnails" showing up at full-size on production server

2016-04-11 Thread Márcio Moreira
Hello, After almost 10 days I have found a way to resolve the issue. Please remember the deployment environment is a shared web hosting (dreamhost), and, there, static files must be on separated "public" folder. I have used rsync to send my files from development server to production server: