annotate mysite/templates/admin/base_site.html @ 35:21172e9be136

Fix typo in production.py where it was using old project_path variable instead of PROJECT_PATH.
author Brian Neal <bgneal@gmail.com>
date Wed, 30 Nov 2011 00:11:23 +0000
parents 7d8015de651a
children
rev   line source
bgneal@1 1 {% extends "admin/base.html" %}
bgneal@1 2 {% load i18n %}
bgneal@1 3
bgneal@1 4 {% block title %}{{ title }} | {% trans 'Madeira site admin' %}{% endblock %}
bgneal@1 5 {% block extrahead %}
bgneal@33 6 <link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" type="image/vnd.microsoft.icon" />
bgneal@1 7 {% endblock %}
bgneal@1 8
bgneal@1 9 {% block branding %}
bgneal@1 10 <h1 id="site-name">{% trans 'Madeira site administration' %}</h1>
bgneal@1 11 {% endblock %}
bgneal@1 12
bgneal@1 13 {% block nav-global %}{% endblock %}