summaryrefslogtreecommitdiff
path: root/archaeological_files/templates/ishtar/administrativeact_document.html
blob: 104e5063e6af09b55dbe78d3ec8d2622734edbf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}Q
{% load i18n %}
{% block extra_head %}
{{search_form.media}}
{{ template_form.media }}
{% endblock %}

{% block content %}
<h2>{% trans "Document generation" %}</h2>
<form action="." method="post">{% csrf_token %}
<div class='form'>
{{ search_form.as_p }}
<h4>{% trans "Choose the type of document" %}</h4>
<table>
{{ template_form }}
</table>
<input type="submit" id="submit_form" name='validate' value="{% trans "Generate" %}"/>
</div>
</form>
{% endblock %}