NexusDashboard/app/templates/reports/index.html.j2

42 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-01-16 18:22:00 +00:00
{% extends 'base.html.j2' %}
{% block title %}
Reports
{% endblock title %}
{% block content_before %}
Reports
{% endblock content_before %}
{% block content %}
<div class="row">
<div class="col">
Items: <br/>
{% for report in reports|reverse %}
2022-01-16 18:22:00 +00:00
<a role="button" class="btn btn-primary btn btn-block"
href='{{url_for('reports.items_by_date', date=report.date)}}'>
{{report.date}}
2022-01-16 18:22:00 +00:00
</a>
{% endfor %}
</div>
<div class="col">
Currency: <br/>
2022-01-19 06:22:43 +00:00
{% for report in reports|reverse %}
<a role="button" class="btn btn-primary btn btn-block"
href='{{url_for('reports.currency_by_date', date=report.date)}}'>
{{report.date}}
</a>
{% endfor %}
2022-01-16 18:22:00 +00:00
</div>
<div class="col">
2022-01-17 04:12:23 +00:00
U-Score: <br/>
2022-01-19 06:22:43 +00:00
{% for report in reports|reverse %}
2022-01-17 04:12:23 +00:00
<a role="button" class="btn btn-primary btn btn-block"
href='{{url_for('reports.uscore_by_date', date=report.date)}}'>
{{report.date}}
</a>
{% endfor %}
2022-01-16 18:22:00 +00:00
</div>
</div>
{% endblock %}