summaryrefslogtreecommitdiff
path: root/archaeological_operations/templates
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2022-02-07 12:08:49 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:21:00 +0100
commita8c123dd20c310c8321d9bec0b76a03e4196b726 (patch)
tree25aa98f03a40cfc9cbf267f0cf2a8ecd12169b6f /archaeological_operations/templates
parent641830616108b3f6e7210600a3b0a0f9f1a227a9 (diff)
downloadIshtar-a8c123dd20c310c8321d9bec0b76a03e4196b726.tar.bz2
Ishtar-a8c123dd20c310c8321d9bec0b76a03e4196b726.zip
Operation - Parcels - Modify: template - display table inline
Diffstat (limited to 'archaeological_operations/templates')
-rw-r--r--archaeological_operations/templates/ishtar/forms/operation_modify_parcels.html25
1 files changed, 9 insertions, 16 deletions
diff --git a/archaeological_operations/templates/ishtar/forms/operation_modify_parcels.html b/archaeological_operations/templates/ishtar/forms/operation_modify_parcels.html
index 6128150be..117141e59 100644
--- a/archaeological_operations/templates/ishtar/forms/operation_modify_parcels.html
+++ b/archaeological_operations/templates/ishtar/forms/operation_modify_parcels.html
@@ -14,23 +14,16 @@
<div class="modal-body body-scroll">
<div class='form'>
{% block main_form %}
- {% if formset.non_form_errors %}
- <div class="alert alert-danger" role="alert">
- {{ formset.non_form_errors }}
- </div>
- {% endif %}
- <table>
- {% for form in formset %}
- {{form}}
- {% endfor %}
+ <table class='inline-table'>
+ <tr>
+ {% for field in formset.forms.0 %}
+ {% if field.name != 'pk' %}{% if field.required %}<th{%else%}<td{% endif %}{% if not forloop.last %} rowspan='2'{% endif %}>
+ {{ field.label_tag }}{% if field.required %}</th>{%else%}</td>{% endif %}{% endif %}{% endfor %}
+ </tr>
+ <tr><td>({% trans "all"%} <input type='checkbox' name='check-all' class='check-all'/>)</td></tr>
+ {% inline_formset 'Parcels' formset.forms False %}
+ </table>
- <tr>
- <td>
- ({% trans "all"%}
- <input type='checkbox' name='check-all' class='check-all'/>)
- </td>
- </tr>
- </table>
{% endblock %}
</div>
</div>