mirror of
https://github.com/Hopiu/django.git
synced 2026-05-18 04:21:06 +00:00
It's the one shown when the optional integration described in https://docs.djangoproject.com/en/dev/ref/contrib/admin/#adding-a-password-reset-feature is used. Follow-up to commits6f470650d0and1d42a86ec7, together they fix different small UI regressions aftera962286b74. Refs #21293.
9 lines
316 B
HTML
9 lines
316 B
HTML
{% extends "admin/base.html" %}
|
|
|
|
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
|
|
|
|
{% block branding %}
|
|
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
|
|
{% endblock %}
|
|
|
|
{% block nav-global %}{% endblock %}
|