{% extends "bijoe/base.html" %} {% load i18n staticfiles bijoe %} {% block extrascripts %} {% import_django_select2_js_css %} {{ block.super }} {{ form.media.css }} {{ form.media.js }} {% endblock %} {% block breadcrumb %} {% url 'homepage' as homepage_url %} {% url 'warehouse' warehouse=warehouse.name as warehouse_url %} {% trans "Homepage" %} {{ warehouse.label }} {{ cube.label }} {% endblock %} {% block content %}
{% csrf_token %}

Représentation

{% include "bijoe/field.html" with field=form.representation %}

Mesure

{% include "bijoe/field.html" with field=form.measure %}

Regroupement horizontal

{% include "bijoe/field.html" with field=form.drilldown_x %}

Regroupement vertical

{% include "bijoe/field.html" with field=form.drilldown_y %}

Répétition

{% include "bijoe/field.html" with field=form.loop %}

Filtre(s)

{% 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" %} {% include "bijoe/filter_field.html" with field=field %} {% endif %} {% endfor %} {% block buttons %} {% endblock %}
{% if visualization %} {% if visualization.representation == 'table' %} {% include "bijoe/cube_table.html" %} {% else %} {% include "bijoe/cube_chart.html" %} {% endif %} {% block actions %} URL {% trans "URL for IFRAME" %} {% trans "Save" %} {% endblock %} {% else %}
{% trans "Please choose some measures and groupings." %}
{% endif %}
{% endblock %}