~maus-maintainers/maus-apps/main

« back to all changes in this revision

Viewing changes to src/mausweb/templates/admin/base_site.html

  • Committer: Mike Jackson
  • Date: 2012-02-09 16:48:55 UTC
  • Revision ID: michaelj@epcc.ed.ac.uk-20120209164855-olo4ppy0zuvvu5rk
Changes to support Apache/mod_wsgi. Renamed maus-web to mausweb. Changed relative imports to absolute. Added django.wsgi configuration file. Fixed small bug in views.py logic

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "admin/base.html" %}
 
2
{% load i18n %}
 
3
 
 
4
{% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %}
 
5
 
 
6
{% block branding %}
 
7
<h1 id="site-name">{% trans 'MAUS Administration' %}</h1>
 
8
{% endblock %}
 
9
 
 
10
{% block nav-global %}{% endblock %}