]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/exporter/templates/exporter.html
c7244cb518b227c58ee66e9a66dba98fe475bbdd
[osqa.git] / forum_modules / exporter / templates / exporter.html
1 {% extends basetemplate %}
2
3 {% load i18n %}
4
5 {% block subtitle %}
6     {% trans "XML data exporter" %}
7 {% endblock %}
8 {% block description %}
9     {% trans "Export database to XML format" %}
10 {% endblock %}
11
12 {% block admincontent %}
13 {% comment %}<p>
14     <strong>{% trans "Available backups" %}</strong>
15 </p>
16 <ul>
17     {% for b in available %}
18     <li>
19         {{ b.date }} by {{ b.author }}
20     </li>
21     {% endfor %}
22 </ul>{% endcomment %}
23
24 <p>
25     <strong>{% trans "Start new backup" %}</strong>
26 </p>
27 <form method="POST" action="">
28     <table>
29     {{ form.as_table }}
30     </table>
31     <input type="submit" name="start" value="{% trans "Start" %}" />
32 </form>
33 {% endblock %}