From 683a1d6f7d67a09950c5c899c13a285e1d1c267e Mon Sep 17 00:00:00 2001 From: Aaron Kimbre Date: Mon, 17 Jan 2022 16:17:08 -0600 Subject: [PATCH] push uscore report page --- app/templates/reports/uscore/by_date.html.j2 | 51 ++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 app/templates/reports/uscore/by_date.html.j2 diff --git a/app/templates/reports/uscore/by_date.html.j2 b/app/templates/reports/uscore/by_date.html.j2 new file mode 100644 index 0000000..f5084ae --- /dev/null +++ b/app/templates/reports/uscore/by_date.html.j2 @@ -0,0 +1,51 @@ +{% extends 'base.html.j2' %} + +{% block title %} + U-Score on {{ date }} +{% endblock title %} + +{% block content_before %} + U-Score on {{ date }} +{% endblock content_before %} + +{% block content %} +
+ + + + + + + {% for name, uscore in data.items() %} + + + + + + {% endfor %} + +
+ Character + + U-Score +
+ {{ name }} + + {{ uscore }} +
+
+{% endblock %} + +{% block js %} + {{ super () }} + +{% endblock %}