summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/fillAT.html
diff options
context:
space:
mode:
Diffstat (limited to 'objectapp/templates/objectapp/fillAT.html')
-rw-r--r--objectapp/templates/objectapp/fillAT.html27
1 files changed, 8 insertions, 19 deletions
diff --git a/objectapp/templates/objectapp/fillAT.html b/objectapp/templates/objectapp/fillAT.html
index 6ddabe4..6a474d0 100644
--- a/objectapp/templates/objectapp/fillAT.html
+++ b/objectapp/templates/objectapp/fillAT.html
@@ -1,28 +1,17 @@
{% extends "objectapp/base.html" %}
{% load i18n %}
{% block content %}
-<form action="." method="POST">
+<form action="." method="POST">
{% csrf_token %}
-<b>Details of {{ name }} </b>
-<table id= "id_table" class = "class_table">
- <tr>
- <th> Attribute Type </th>
- <th> Value </th>
- </tr>
- {% for field in form %}
- <tr>
- <td>{{ field.label_tag }}</td>
- <td>{{ field }} {{ field.errors }}</td>
- </tr>
- {% endfor %}
- <tr>
- <td><input type="submit" id="id_submit" value="Go"/></td>
- <td><input type="button" id="id_back" value="Back"/></td>
- </tr>
-</table>
+<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 }}"/>
-<input type="hidden" id="id_hidden" value=" "/>
+
</form>
{% endblock %}