U-Score reporting

This commit is contained in:
Aaron Kimbre
2022-01-16 22:12:23 -06:00
parent c183d1ff5a
commit ab25db182d
3 changed files with 53 additions and 1 deletions

View File

@@ -18,7 +18,7 @@
Character
</th>
<th scope="col">
currency
Currency
</th>
</thead>
<tbody>

View File

@@ -29,6 +29,13 @@
{% endfor %}
</div>
<div class="col">
U-Score: <br/>
{% for report in reports %}
<a role="button" class="btn btn-primary btn btn-block"
href='{{url_for('reports.uscore_by_date', date=report.date)}}'>
{{report.date}}
</a>
{% endfor %}
</div>
</div>
{% endblock %}