{% set colors_list = ["purple","red","orange","green","blue","grey","brown","magenta","forestgreen"] %}
{% for chart in chart_data %}
{{app.modules[chart["module"]].icon}} {{app.modules[chart["module"]].route.label|trans}}
{% if chart["chart_type"] != "count" and chart["chart_type"] != "list" %}
{% elseif chart["chart_type"] == "list" %}
{% if chart["data"]|length>0 %}
{% for tbl_field in chart["fields"] %}
{% if tbl_field!="id" %}
| {{tbl_field|trans}} |
{% endif %}
{% endfor %}
{% for chart_rec in chart["data"] %}
{% for tbl_field in chart["fields"] %}
{% if tbl_field!="id" %}
| {{chart_rec[tbl_field]}} |
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
{{"No Data"|trans}}
{% endif %}
{% else %}
{% if chart["group_field"]!="none" %}
{% if chart["data"]["labels"]|length>0 %}
{% for chart_group in chart["data"]["labels"] %}
| {{chart_group | trans}}: {{chart["data"]["values"][loop.index-1]}} |
{% endfor %}
{% else %}
{{"No Data"|trans}}
{% endif %}
{% else %}
{{chart["data"]}} {{app.modules[chart["module"]].route.label|trans}}
{% endif %}
{% endif %}
{% endfor %}
{% if app.config.twitter_widget_enabled and app.config.twitter_page_url!="" %}
{% endif %}
{% if app.config.facebook_widget_enabled and app.config.facebook_page_url!="" %}
{% endif %}
{% endblock %}
{% block footerscripts %}
{% set chart_labels = [] %}
{% for chart in chart_data %}
{% set chart_labels_t = [] %}
{% if chart["data"]["labels"] is defined %}
{% for label in chart["data"]["labels"] %}
{% set chart_labels_t = chart_labels_t|merge([label|trans]) %}
{% endfor %}
{% endif %}
{% set chart_labels = chart_labels|merge([chart_labels_t]) %}
{% endfor %}
{% endblock %}