Re: Django Snippets-contact form

2007-12-05 Thread mike
Gul You hit the nail right on the head...thanks a bunch. On Dec 5, 10:52 am, "Marty Alchin" <[EMAIL PROTECTED]> wrote: > I doubt the problem is with base.html itself, but there might still be > a mismatch of block names. > > contact.html is expecting the following blocks to be defined in base

Re: Django Snippets-contact form

2007-12-05 Thread Marty Alchin
I doubt the problem is with base.html itself, but there might still be a mismatch of block names. contact.html is expecting the following blocks to be defined in base.html: * fulltitle * header * extrahead * content-wrap While thankyou.html is expecting the following blocks instead: * billboar

Re: Django Snippets-contact form

2007-12-05 Thread mike
if i include something like this at the top it will load the admin media, but nothing will be below it {% extends "admin/base_site.html" %} {% block content %} {% load adminmedia %} {% endblock %} On Dec 5, 10:42 am, mike <[EMAIL PROTECTED]> wrote: > On Dec 5, 10:36 am, Jarek Zgoda <[EMAIL PROT

Re: Django Snippets-contact form

2007-12-05 Thread mike
On Dec 5, 10:36 am, Jarek Zgoda <[EMAIL PROTECTED]> wrote: > mike napisał(a): > > > I have been trying to implement the contact form from the Django > > Snippets page found here. > > >http://www.djangosnippets.org/snippets/261/ I'm able to make it all > > work together, but the contacts.html pag

Re: Django Snippets-contact form

2007-12-05 Thread Jarek Zgoda
mike napisał(a): > I have been trying to implement the contact form from the Django > Snippets page found here. > > http://www.djangosnippets.org/snippets/261/ I'm able to make it all > work together, but the contacts.html page, is blank unless i remove > the{% extends "base.html" %} part.

Re: Django Snippets-contact form

2007-12-05 Thread mike
Here is the contacts.html page {% extends "base.html" %} {% block fulltitle %}Contact me!{% block title %}{% endblock %}{% endblock %} {% block header %} header of course {% endblock %} {% block extrahead %} {% endblock %} {% block content-wrap %}

Django Snippets-contact form

2007-12-05 Thread mike
I have been trying to implement the contact form from the Django Snippets page found here. http://www.djangosnippets.org/snippets/261/ I'm able to make it all work together, but the contacts.html page, is blank unless i remove the{% extends "base.html" %} part. After removing it I can see