1 | | The illustrated Base_site.html template will not with Django 1.7. The Site Tile and Site Heading default filters should be text instead. Like this: |
2 | | |
3 | | {% extends "admin/base.html" %} |
4 | | |
5 | | {% block title %}{{ title }} | Iains Polls site admin) {% endblock %} |
6 | | |
7 | | {% block branding %} |
8 | | <h1 id="site-name"><a href="{% url 'admin:index' %}">Iains Polls site administration</a></h1> |
9 | | {% endblock %} |
10 | | |
11 | | {% block nav-global %}{% endblock %} |
12 | | |
13 | | |
14 | | Please see http://stackoverflow.com/questions/25727687/django-1-7-updating-base-site-html-not-working |
| 1 | Ooops! My mistake. |