annotate bns_website/templates/admin/base_site.html @ 62:93e9e7b3d2ae

Put in an import dance for Python 2.5. Apparently cgi.parse_qs was copied to urlparse in Python 2.6. So look for it first in urlparse, and if not found, try cgi.
author Brian Neal <bgneal@gmail.com>
date Sat, 19 Nov 2011 14:47:17 -0600
parents 48ff23eab86a
children
rev   line source
bgneal@6 1 {% extends "admin/base.html" %}
bgneal@6 2 {% load i18n %}
bgneal@6 3
bgneal@6 4 {% block title %}{{ title }} | {% trans 'Brave New Surf Site Admin' %}{% endblock %}
bgneal@6 5
bgneal@6 6 {% block branding %}
bgneal@6 7 <h1 id="site-name">{% trans 'Brave New Surf Administration' %}</h1>
bgneal@6 8 {% endblock %}
bgneal@6 9
bgneal@6 10 {% block nav-global %}{% endblock %}