Coverage for ivatar/ivataraccount/templates/export.html: 100%

15 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-18 23:10 +0000

1{% extends 'base.html' %} 

2{% load i18n %} 

3  

4{% block title %}{% trans 'Export your data' %}{% endblock title %} 

5  

6{% block content %} 

7  

8<h1>{% trans 'Export your data' %}</h1> 

9  

10<p>{% trans 'Libravatar will now export all of your personal data to a compressed XML file.' %}</p> 

11  

12<form action="{% url 'export' %}" method="post" name="export">{% csrf_token %} 

13  

14<p><button type="submit" class="button">{% trans 'Export' %}</button>&nbsp; 

15<a href="{% url 'profile' %}" class="button">{% trans 'Cancel' %}</a> 

16</p> 

17  

18</form> 

19  

20{% endblock content %}