generated from 2martens/django-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
349 B
13 lines
349 B
{% extends "app/base.html" %} |
|
{% load i18n %} |
|
{% load crispy_forms_tags %} |
|
|
|
{% block title %}{{ site.title }} - {{ title }}{% endblock %} |
|
|
|
{% block content %} |
|
<h1>{{ title }}</h1> |
|
|
|
<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 %}
|
|
|