blob: 0e60645d27bbe2fe209969b7d484128f58f31bf0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "admin/base_site.html" %}
{% load i18n %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans "Home" %}</a>
› {% trans "Password reset" %}
</div>
{% endblock breadcrumbs %}
{% block title %}{{ title }}{% endblock title %}
{% block content_title %}<h1>{{ title }}</h1>{% endblock content_title %}
{% block content %}
<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
<p><a href="{{ login_url }}">{% trans "Log in" %}</a></p>
{% endblock content %}
|