summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/fillAT.html
blob: 6a474d0d74ffe30f1f4342fc2a3d2a19b1c91400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "objectapp/base.html" %}
{% load i18n %}
{% block content %}

<form action="." method="POST">
{% csrf_token %}

<b>{{ title }}</b>
{% for field in form  %}
{{ field }} {{ field.errors }}
{% endfor %}
<input type="submit" id="id_submit" value="Go"/>
<input type="button" id="id_back" value="Back"/>
<input type="hidden" id="id_back_url" value="{{ absolute_url_node }}"/>

</form>
{% endblock %}