summaryrefslogtreecommitdiff
path: root/ishtar_common/templates
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2013-10-26 23:50:53 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2013-10-26 23:50:53 +0200
commitbbefc246606527626d60c8e7b0b51ff328d782db (patch)
treec5e6f08ceded13091e1450c1cb1999d8c4a1d7be /ishtar_common/templates
parent42c142e549a2890fcf18aba3049ca713b848d02e (diff)
downloadIshtar-bbefc246606527626d60c8e7b0b51ff328d782db.tar.bz2
Ishtar-bbefc246606527626d60c8e7b0b51ff328d782db.zip
Allow the deletion of all parcel with a click (refs #1428)
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r--ishtar_common/templates/ishtar/wizard/parcels_wizard.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/wizard/parcels_wizard.html b/ishtar_common/templates/ishtar/wizard/parcels_wizard.html
index 5aea689dd..fdce51cdb 100644
--- a/ishtar_common/templates/ishtar/wizard/parcels_wizard.html
+++ b/ishtar_common/templates/ishtar/wizard/parcels_wizard.html
@@ -15,8 +15,9 @@
<tr class='error'><th colspan='2'>{{wizard.form.non_form_errors}}</th></tr>
</table>{%endif%}
{{wizard.form.selection_form}}
-<table class='inline-table'>
- <tr>{% for field in wizard.form.forms.0 %}<th>{{ field.label_tag }}</th>{% endfor %}</tr>
+<table class='inline-table' id='parcel-table'>
+ <tr>{% for field in wizard.form.forms.0 %}<th{% if not forloop.last %} rowspan='2'{% endif %}>{{ field.label_tag }}</th>{% endfor %}</tr>
+ <tr><td>({% trans "all"%} <input type='checkbox' name='check-all' class='check-all'/>)</td></tr>
{% inline_formset 'Parcels' wizard.form.forms False %}
</table>
<p><button name="formset_modify" value="{{wizard.steps.current}}">{% trans "Add/Modify" %}</button></p>
@@ -26,4 +27,7 @@
{% if next_steps %}<input type="submit" id="submit_end_form" name='validate_and_end' value="{% trans "Validate and end" %}"/>{% endif %}
</div>
</form>
+<script type='text/javascript'>
+
+</script>
{% endblock %}