aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html.j2
blob: 234759fa0cc4c7d08abdb46584bc898879a5cfb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "template.html.j2" %}
{% block content %}
    <div id="multicharts">
        <ul>
            {% for elem in charts %}
                <li>
                    <div class="chart_container">
                        <div class="minichart" id="/minichart{{ elem['url'] }}">
                        </div>
                    </div>
                    <a class="bottom_text" href="{{ elem['url'] }}">{{ elem['title'] }}</a>
                </li>
            {% endfor %}
        </ul>
    </div>  
{% endblock %}