Hi guys,

Chasing my tail a bit here, hoping you can help me.

say I have a base.html:

-------------
<html>
{% include 'header.html' %}
</html>
--------------

header.html:
---------------------
<title>{% block title %}Default title{% endblock title %}</title>
---------------------

And a child detail.html
---------------
{% extends 'base.html %}
{% block title %}Different title{% endblock title %}
---------------

When rendering detail.html, should the title block in header.html be
overridden? I'm guessing my understanding of how the template
including/inheritance understanding is wrong, so please correct me :)

Thanks.

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to