8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-25 04:43:10 +00:00
re2o/useradmin/templates/admin/base_site.html

17 lines
505 B
HTML
Raw Normal View History

{# Please keep this template in sync with django/contrib/admin one #}
2019-02-16 19:55:16 +00:00
{% extends "users/sidebar.html" %}
2019-03-02 09:01:35 +00:00
{% load static %}
{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% static "useradmin/css/base.css" %}" />
{% endblock %}
2019-02-16 19:55:16 +00:00
{% block title %}{{ title }}{% endblock %}
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
{% endblock %}
2019-02-16 19:55:16 +00:00
{% block nav-global %}{% endblock %}