diff options
Diffstat (limited to 'templates/index.html.j2')
-rw-r--r-- | templates/index.html.j2 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/index.html.j2 b/templates/index.html.j2 index 91f314e..40ff005 100644 --- a/templates/index.html.j2 +++ b/templates/index.html.j2 @@ -1,4 +1,15 @@ {% extends "template.html.j2" %} {% block content %} - <p>foo</p> + <div id="multicharts"> + <ul> + {% for elem in charts %} + <li> + <div class="chart_container"> + <div class="minichart" id="/minichart{{ elem['url'] }}"> + <a href="{{ elem['url'] }}">{{ elem['title'] }}</a> + </div> + </li> + {% endfor %} + </ul> + </div> {% endblock %}
\ No newline at end of file |