mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-25 04:43:10 +00:00
16 lines
505 B
HTML
16 lines
505 B
HTML
{# Please keep this template in sync with django/contrib/admin one #}
|
|
{% extends "users/sidebar.html" %}
|
|
{% load static %}
|
|
|
|
{% block extrastyle %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" type="text/css" href="{% static "useradmin/css/base.css" %}" />
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block branding %}
|
|
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
|
|
{% endblock %}
|
|
|
|
{% block nav-global %}{% endblock %}
|