diff --git a/sapl/templates/admin/base_site.html b/sapl/templates/admin/base_site.html new file mode 100644 index 000000000..6ebba8514 --- /dev/null +++ b/sapl/templates/admin/base_site.html @@ -0,0 +1,73 @@ +{% extends "admin/base.html" %} +{% load i18n static menus %} + +{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} + +{% block extrahead %} + {{ block.super }} + + +{% endblock %} + +{% block branding %} +

{{ site_header|default:_('Django administration') }}

+{% endblock %} + +{% block nav-global %} + + +{% endblock %}