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 %}