{% from 'macros.html' import render_labels %} {% extends "base.html" %} {% block js %} {{ super() }} {% endblock %} {% block content %}

{{ conf.title }}

{% if conf.subtitle %}

{{ conf.subtitle }}

{% endif %}
{% if text %}
{{ text |md |safe }}
{% endif %} {% for graph in graphs %}

{{ loop.index }} / {{ loop.length }} {% if graph.showtitle %}  {{ graph.title |mdi |safe }} {% endif %} {{ render_labels(graph.labels) }}

{% if graph.pretext %}
{{ graph.pretext |md |safe }}
{% endif %} {% if graph.name %}
{% set url = url_for('get_data', filename=graph.name) %} {% if graph.name.lower().endswith('.svg') %}
{% else %} {{ graph.name }} {% endif %}
{% endif %} {% if graph.text %}
{{ graph.text |md |safe }}
{% endif %} {% if graph.index %}
Tags:  {% for word in graph.index |sortindexes %} {{ word }} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}