]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/sximporter/templates/page.html
Migrate to Django 1.6
[osqa.git] / forum_modules / sximporter / templates / page.html
1 {% extends "osqaadmin/base.html" %}
2
3 {% load i18n %}
4 {% load user_tags %}
5
6 {% block subtitle %}
7     {% trans "SX Importer" %}
8 {% endblock %}
9 {% block description %}
10     {% trans "Welcome to Stack Exchange dump importer." %}
11 {% endblock %}
12
13 {% block admincontent %}
14     <form method="post" action="" enctype="multipart/form-data">
15     {% csrf_token %}
16     <input type="file" name="dump" /><br>
17     {% trans "Your user id in stack exchange" %}
18     <input type="test" name="owneruid" size="3" value="2" /><br />
19
20     <input type="checkbox" checked="checked" name="mergesimilar" />
21     {% trans "Merge users with same user name and email" %}<br />
22
23     <input type="submit" value="submit" />
24     </form>
25     {% for n in names %}
26         <p>{{ n }}</p>
27     {% endfor %}
28 {% endblock %}