summaryrefslogtreecommitdiff
path: root/ishtar/templates/grid_form.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-06-13 18:40:44 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-06-13 18:40:44 +0200
commit98903300a0e745265b61e5fa7c1fef77b750c351 (patch)
tree675156a261746243b20481bb8bdee300cd89f3f7 /ishtar/templates/grid_form.html
parentb4550095d45d58b5bfc5ba2a454529287f396415 (diff)
downloadIshtar-98903300a0e745265b61e5fa7c1fef77b750c351.tar.bz2
Ishtar-98903300a0e745265b61e5fa7c1fef77b750c351.zip
Manage unique reference for operations (refs #260) + includetag for forms
Diffstat (limited to 'ishtar/templates/grid_form.html')
-rw-r--r--ishtar/templates/grid_form.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/ishtar/templates/grid_form.html b/ishtar/templates/grid_form.html
deleted file mode 100644
index 8c02197b4..000000000
--- a/ishtar/templates/grid_form.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load i18n %}
- {% for field in form %}
- <tr{% if field.field.required %} class='required'{% endif %}>
- <th>{{ field.label_tag }}</th>
- <td> {{ field.errors }}{{field|safe}}</td>{% if field.help_text %}
- <td><a href="#{{field.name}}" class="help_display" title="{% trans "Help"%}">?</a></td>
- </tr>
- <tr class="help_text" id="{{field.name}}_help">
- <td colspan="3"><div>{{field.help_text}}</div></td>
- {%endif%}</tr>{% endfor %}