[mezzanine-users] Submit button not working

2016-08-01 Thread o . troshyn
So this is my code, and I think I made a mistake by putting in the wrong place. Now the form wont work mailto:samplem...@gmail.com; method="post">Referral Name -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from

Re: [mezzanine-users] wrong base.html

2016-08-01 Thread Ryne Everett
> > This is a common pattern in Django, but I couldn't find any documentation > that supports it. Hopefully someone else can reference a reputable source > that explains it. The django tutorial has a section on "Template namespacing".

Re: [mezzanine-users] wrong base.html

2016-08-01 Thread Eduardo Rivas
Django templates don't work with absolute paths (or if they do, it's not a good idea for portability). The templates you want to refer to in {% extends %} are relative to the templates/ directory in each installed app. Since all templates/ directories from all apps are combined into one

[mezzanine-users] Re: Sending emails from a contact form

2016-08-01 Thread o . troshyn
My mezzanine uses Django Grappelli interface, and its really confusing. Where to access settings.py and where to install pip. On Sunday, 31 July 2016 18:47:43 UTC-7, o.tr...@share.epsb.ca wrote: > > I am a non programmer and I have a small site in development. And one of > the things I need is

[mezzanine-users] Re: Sending emails from a contact form

2016-08-01 Thread o . troshyn
I am using django-grappelli On Sunday, 31 July 2016 18:47:43 UTC-7, o.tr...@share.epsb.ca wrote: > > I am a non programmer and I have a small site in development. And one of > the things I need is for the contact form to send emails automatically when > someone fill the form out and hits

[mezzanine-users] wrong base.html

2016-08-01 Thread dznektra
I have to themes (nektra and coinfabrik). {% extends "base.html" %} in coinfabrik/templates/index.html renders nektra/templates/base.html but I'd like to make it render coinfabrik/templates/base.html. How can I do that? Thank you very much! -- You received this message because you are

Re: [mezzanine-users] Blog category hangs

2016-08-01 Thread Ryne Everett
Another possibility would be that you have postmortem breakpoints enabled somehow and the line in the traceback is triggering an exception. This doesn't seem likely to happen by accident though. How are you invoking the development server? The screenshot doesn't include the fancy mezzanine ascii

Re: [mezzanine-users] Re: Sending emails from a contact form

2016-08-01 Thread Ryne Everett
Assuming you're actually dealing with a mezzanine site (and not a different product with the same name) there is no way to access the console or install things from the admin -- you need access to the server. To some this is an inconvenience and to others (myself included) an essential security

Re: [mezzanine-users] Blog category hangs

2016-08-01 Thread Bojan Kogoj
I did a force reinstall, but it still doesn't work. I haven't set any breakpoints, neither do I know how to in django. Any more ideas? On Friday, July 29, 2016 at 3:34:30 PM UTC+2, Ryne Everett wrote: > > You have a breakpoint at line 30 in mezzanine/blog/views.py which is > blocking