diff options
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/admin/import_from_file.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ishtar_common/templates/admin/import_from_file.html b/ishtar_common/templates/admin/import_from_file.html index 578a489d6..d520b9532 100644 --- a/ishtar_common/templates/admin/import_from_file.html +++ b/ishtar_common/templates/admin/import_from_file.html @@ -1,9 +1,15 @@ {% 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> |