diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-16 12:45:00 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-16 12:46:09 +0200 |
| commit | 12e9870e2aa0659de98a9122fbc4ab16b0877449 (patch) | |
| tree | 36d375089b787fbc3649ad54bb9e7e3b2b5741e0 /ishtar_common/templates/ishtar/forms/modify_parcels.html | |
| parent | db5ecbb7b69ff668ca005bd9535bf595b79e649e (diff) | |
| download | Ishtar-12e9870e2aa0659de98a9122fbc4ab16b0877449.tar.bz2 Ishtar-12e9870e2aa0659de98a9122fbc4ab16b0877449.zip | |
✨ Context records relations: remove form from the wizard to put in a specific form
Diffstat (limited to 'ishtar_common/templates/ishtar/forms/modify_parcels.html')
| -rw-r--r-- | ishtar_common/templates/ishtar/forms/modify_parcels.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/forms/modify_parcels.html b/ishtar_common/templates/ishtar/forms/modify_parcels.html index 4c7c39120..c6d50fdef 100644 --- a/ishtar_common/templates/ishtar/forms/modify_parcels.html +++ b/ishtar_common/templates/ishtar/forms/modify_parcels.html @@ -20,11 +20,11 @@ <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 %} + {% if field.name != 'pk' %}<th{% if not forloop.last %} rowspan='2'{% endif %}> + {{field.label}}</th>{% endif %}{% endfor %} </tr> <tr><td>({% trans "all"%} <input type='checkbox' name='check-all' class='check-all-parcel'/>)</td></tr> - {% inline_formset 'Parcels' formset.forms False %} + {% inline_formset _('Parcels') formset.forms False %} </table> {% endblock %} |
