2018-08-14 08:55:34 +00:00
|
|
|
{% set ns = namespace() -%}
|
|
|
|
|
|
|
|
{% include 'head.html' with context %}
|
|
|
|
<article>
|
2018-08-14 08:59:12 +00:00
|
|
|
<h1>AAC Results: Licences{% if year %} for {{ year }}{% endif %}</h1>
|
2018-08-14 08:55:34 +00:00
|
|
|
{% if results -%}
|
|
|
|
{%- set ns.total = 0 -%}
|
|
|
|
{%- if 'count' in results -%}
|
|
|
|
{%- set ns.total = results['count'] -%}
|
|
|
|
{%- endif -%}
|
2018-08-14 08:59:12 +00:00
|
|
|
<table class="narrow">
|
2018-08-14 08:55:34 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Licence</th>
|
|
|
|
<th>Name</th>
|
2018-08-14 08:59:12 +00:00
|
|
|
<th>Year</th>
|
2018-08-14 08:55:34 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{%- for row in results['rows'] -%}
|
|
|
|
<tr>
|
2018-08-14 09:01:26 +00:00
|
|
|
<td><span class="label">Licence</span> <span><a href="{{ url_for('licence', title=row.licence|trim|urlescape, year=row.date|year, start=None, show=ns.show) }}">{{ row.licence|trim|e }}</a></span></td>
|
2018-08-14 09:02:56 +00:00
|
|
|
<td><span class="label">Name</span> <span><a href="{{ url_for('person', title=row.person|trim|urlescape, year=None, start=None, show=ns.show) }}">{{ row.person|trim|e }}</a></span></td>
|
2018-08-14 08:59:12 +00:00
|
|
|
<td><span class="label">Year</span> <span>{{ row.date | year }}</a></span></td>
|
2018-08-14 08:55:34 +00:00
|
|
|
</tr>
|
|
|
|
{%- endfor -%}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{%- endif %}
|
|
|
|
</article>
|
|
|
|
<footer>
|
|
|
|
{% include 'prevnext.html' with context %}
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|