From f90198e0c29f3c46880b7c8e1e38ca0cfa328736 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Sun, 16 Dec 2012 14:34:17 +0000 Subject: [PATCH] Template for webapp admin HTML header svn: r20785 --- gramps/data/templates/admin/base_site.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gramps/data/templates/admin/base_site.html diff --git a/gramps/data/templates/admin/base_site.html b/gramps/data/templates/admin/base_site.html new file mode 100644 index 000000000..d31a0fd82 --- /dev/null +++ b/gramps/data/templates/admin/base_site.html @@ -0,0 +1,22 @@ +{% extends "admin/base.html" %} +{% load i18n %} + +{% block title %}{{ title }} | My New Title{% endblock %} + +{% block branding %} +

My new title for the Admin site!

+{% endblock %} + +{% block nav-global %} + {% if user.is_staff %} + + + Website home + Admin home + Invoices + New Users + All Users + {% endif %} +{% endblock %}