33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
|
{% extends 'global.html'%}
|
||
|
{% load static %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% load svg_icon %}
|
||
|
|
||
|
{% block maincontent %}
|
||
|
<form class="LP-Form" method="POST" enctype="multipart/form-data">
|
||
|
<fieldset class="LP-Form__Fieldset">
|
||
|
<legend class="LP-Form__Legend">{% translate 'Import Places from KML File' %}</legend>
|
||
|
{% csrf_token %}
|
||
|
|
||
|
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
||
|
<div class="LP-Form__Field">
|
||
|
{% include 'partials/form/inputField.html' with field=upload_form.description %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="LP-Form__Composition LP-Form__Composition--breakable">
|
||
|
<div class="LP-Form__Field">
|
||
|
{% include 'partials/form/inputField.html' with field=upload_form.map_file %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{% translate 'Create' as action %}
|
||
|
<div class="LP-Form__Composition LP-Form__Composition--buttons">
|
||
|
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
|
||
|
</form>
|
||
|
{% endblock maincontent %}
|