blob: 282cbcca2f4d8c9888895a983f319cb291c79f83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "admin/base_site.html" %}
{% block content %}
<form action="." method="post" enctype="multipart/form-data">
{% csrf_token %}
<table>
{{ csv_form }}
</table>
<input type="hidden" name="action" value="import_generic" />
<input type="submit" name="apply" value="Import" />
</form>
{% endblock %}
|