~ubuntu-branches/ubuntu/trusty/gramps/trusty-proposed

« back to all changes in this revision

Viewing changes to data/templates/admin/base_site.html

  • Committer: Package Import Robot
  • Author(s): Ross Gammon
  • Date: 2014-02-03 17:28:04 UTC
  • mfrom: (39.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20140203172804-76y7nwxiw92zhlnj
Tags: 4.0.3+dfsg-1
* New upstream release (Closes: #720858)
* To-do notes improved and made persistent (Closes: #680692)
* Applied patch to setup.py to fix resource path problem
* Applied patch to disable the optional HTML View & prevent a crash
* Remove sourceless javascript files (Closes: #736436)
* Gramps uses Bat Mitzva internally (Closes: #502532)

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 }} | My New Title{% endblock %}
 
5
 
 
6
{% block branding %}
 
7
<h1 id="site-name">My new title for the Admin site!</h1>
 
8
{% endblock %}
 
9
 
 
10
{% block nav-global %}
 
11
    {% if user.is_staff %}
 
12
    <style type="text/css">
 
13
        .ml {margin:0 10px 10px;display:block;float:left}
 
14
    </style>
 
15
 
 
16
    <a href="/" clas="ml">Website home</a>  
 
17
    <a href="/admin/" class="ml">Admin home</a>
 
18
    <a href="/admin/members/invoice/" class="ml">Invoices</a>
 
19
    <a href="/admin/auth/user/?is_active__exact=0" class="ml">New Users</a>
 
20
    <a href="/admin/auth/user/" class="ml">All Users</a>
 
21
    {% endif %}
 
22
{% endblock %}