misc: move loop after drilldown parameters (#16019)

This commit is contained in:
Frédéric Péters 2019-11-23 17:55:23 +01:00
parent 5d68c543b8
commit 039e32fb83
1 changed files with 2 additions and 2 deletions

View File

@ -27,14 +27,14 @@
{% csrf_token %}
<h3>Représentation</h3>
{% include "bijoe/field.html" with field=form.representation %}
<h3>Répétition</h3>
{% include "bijoe/field.html" with field=form.loop %}
<h3>Mesure</h3>
{% include "bijoe/field.html" with field=form.measure %}
<h3>Regroupement horizontal</h3>
{% include "bijoe/field.html" with field=form.drilldown_x %}
<h3>Regroupement vertical</h3>
{% include "bijoe/field.html" with field=form.drilldown_y %}
<h3>Répétition</h3>
{% include "bijoe/field.html" with field=form.loop %}
<h3>Filtre(s)</h3>
{% for field in form %}
{% if not field.is_hidden and field.name != "loop" and field.name != "measure" and field.name != "drilldown_x" and field.name != "drilldown_y" and field.name != "representation" %}