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 %}