diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-21 20:24:32 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-04-24 19:38:57 +0200 |
| commit | 1e2e30f4b8a8914931ffe68f235f0b7fcd01ae1d (patch) | |
| tree | 59204818a33b363a5c6dd5711612bd27946578ba /ishtar_common/templates/admin/import_from_file.html | |
| parent | 032aea793747a159885c1b2ce2f8e143b6291b09 (diff) | |
| download | Ishtar-1e2e30f4b8a8914931ffe68f235f0b7fcd01ae1d.tar.bz2 Ishtar-1e2e30f4b8a8914931ffe68f235f0b7fcd01ae1d.zip | |
Admin: import geojson files for towns
Diffstat (limited to 'ishtar_common/templates/admin/import_from_file.html')
| -rw-r--r-- | ishtar_common/templates/admin/import_from_file.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ishtar_common/templates/admin/import_from_file.html b/ishtar_common/templates/admin/import_from_file.html new file mode 100644 index 000000000..578a489d6 --- /dev/null +++ b/ishtar_common/templates/admin/import_from_file.html @@ -0,0 +1,14 @@ +{% extends "admin/base_site.html" %} + +{% block content %} + +<form action="." method="post" enctype="multipart/form-data"> +{% csrf_token %} +<table> +{{ file_form }} +</table> +<input type="hidden" name="action" value="{{current_action}}" /> +<input type="submit" name="apply" value="Import" /> +</form> + +{% endblock %} |
