Coverage for ivatar/ivataraccount/templates/password_change_done.html: 0%

13 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-18 23:09 +0000

1{% extends 'base.html' %} 

2{% load i18n %} 

3  

4{% block title %}{% trans 'Password changed successfully' %} - ivatar{% endblock title %} 

5  

6{% block content %} 

7  

8<h1>{% trans 'Password changed successfully' %}</h1> 

9  

10<p>{% trans 'Your password was changed.' %}</p> 

11  

12{% if not user.is_anonymous %} 

13<p><a href="{% url 'profile' %}">{% trans 'Back to your profile' %}</a></p> 

14{% else %} 

15<p><a href="{% url 'login' %}">{% trans 'Back to the login page' %}</a></p> 

16{% endif %} 

17  

18<div style="height:40px"></div> 

19  

20{% endblock content %}