aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html.j2
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2023-05-05 15:58:07 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2023-05-05 15:58:07 +0100
commit8a058ac45e6ef5a4c7cd7141332b7951bc01f49c (patch)
tree054ebf8ceb2f5f55cb4617e6a4abded57825d464 /templates/index.html.j2
parent5dd5ed8757c36a91e5031a3a55ea8a4291714691 (diff)
downloadUKGenderPayGap-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.j213
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