Files
POC-Java-www/pocwww/templates/datelist.jinja2
2017-03-09 18:12:18 -06:00

24 lines
548 B
Django/Jinja

{% extends "layout.jinja2" %}
{% block content %}
<div class="content">
<h1>Card Dates </h1>
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Cards</th>
</tr>
</thead>
<tbody>
{% for day in datelist %}
<tr>
<td><a href="/cards/{{day.date}}">{{day.date | date('long')}}</a></td>
<td>{{day.count}} cards</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock content %}