blob: d520b9532329457b8467858278884a0886c0d32a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "admin/base_site.html" %}
{% load i18n %}
{% block content %}
<form action="." method="post" enctype="multipart/form-data">
{% csrf_token %}
{% if is_town %}
<ul class="messagelist">
<li class="warning">{% trans "If your json file is from an Ishtar export, provide the json file and do not change the other fields." %}</li>
</ul>
{% endif %}
<table>
{{ file_form }}
</table>
<input type="hidden" name="action" value="{{current_action}}" />
<input type="submit" name="apply" value="Import" />
</form>
{% endblock %}
|