Coverage for ivatar/ivataraccount/templates/export.html: 100%
15 statements
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-26 00:11 +0000
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-26 00:11 +0000
1{% extends 'base.html' %}
2{% load i18n %}
4{% block title %}{% trans 'Export your data' %}{% endblock title %}
6{% block content %}
8<h1>{% trans 'Export your data' %}</h1>
10<p>{% trans 'Libravatar will now export all of your personal data to a compressed XML file.' %}</p>
12<form action="{% url 'export' %}" method="post" name="export">{% csrf_token %}
14<p><button type="submit" class="button">{% trans 'Export' %}</button>
15<a href="{% url 'profile' %}" class="button">{% trans 'Cancel' %}</a>
16</p>
18</form>
20{% endblock content %}