Commit 5ea34f3f authored by Ramiro Morales's avatar Ramiro Morales
Browse files

Restored site header text in password reset view.

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 commits 6f470650 and 1d42a86e, together they fix
different small UI regressions after a962286b.

Refs #21293.
parent b57ee15b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{% extends "admin/base.html" %}

{% block title %}{{ title }} | {{ site_title }}{% endblock %}
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}

{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header }}</a></h1>
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
{% endblock %}

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