I'm very new to the whole Django framework, but have a  bit of
experiance in Python. I'm doing some of the tutorial work and
extending to my own project slowly. However, I'm having a MAJOR
problem when using the TEMPLATE_DIRS. In the settings file I have set
where all my template HTML files are to be. I, so far, have two files:
index.html and index_title.html (which "extends index.html").
index.html works without a hitch. However, I can't get any of the
extended files to work with index. Here's a snippit:


index.html:
...
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>{% block tag_title %}THIS IS TEMPORARY{% endblock %}</title>
</head>
...

index_title.html:

{% extends "index.html" %}

{% block tag_title %}THIS IS NOT TEMPORARY{% endblock %}

I've tried various forms of this, but to no avail. I can zip up the
project and forward it along to anyone who would be willing to  help.
It doesn't seem like it would be a hard problem for someone who knows
Django well.

[EMAIL PROTECTED]


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to