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

Mesure(s)

{% with field=form.measures %}

{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %}

{% endwith %}

Regroupement(s)

{% with field=form.drilldown %}

{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %}

{% endwith %}

Filtre(s)

{{ field.label_tag }} {% if field.errors %} {% endif %} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %}

{% endif %} {% endfor %}
{% if data %} {% for dimension in drilldown %} {% endfor %} {% for measure in measures %} {% endfor %} {% for row in data %} {% for cell in row %} {% endfor %} {% endfor %}
{{ dimension.label.capitalize }}{{ measure.label.capitalize }}
{% if cell == None %}{% trans "None" %}{% else %}{{ cell }}{% endif %}
{% else %}
Veuillez choisir des mesures et des regroupements
{% endif %} {% endblock %} {% block page-end %} {{ form.media.js }} {% endblock %}