diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-05-05 15:58:07 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-05-05 15:58:07 +0100 |
commit | 8a058ac45e6ef5a4c7cd7141332b7951bc01f49c (patch) | |
tree | 054ebf8ceb2f5f55cb4617e6a4abded57825d464 /templates/index.html.j2 | |
parent | 5dd5ed8757c36a91e5031a3a55ea8a4291714691 (diff) | |
download | UKGenderPayGap-8a058ac45e6ef5a4c7cd7141332b7951bc01f49c.tar.gz UKGenderPayGap-8a058ac45e6ef5a4c7cd7141332b7951bc01f49c.zip |
Finished search bar, started adding <div>s for chart content
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 |