2016-06-08 15:15:59 +01:00
|
|
|
{% from 'components/big-number.html' import big_number %}
|
|
|
|
|
|
2016-04-13 12:50:28 +01:00
|
|
|
{% macro pill(
|
|
|
|
|
title,
|
|
|
|
|
items=[],
|
|
|
|
|
current_value=None
|
|
|
|
|
) %}
|
|
|
|
|
<nav role='navigation' class='pill' aria-labelledby="pill_{{title}}">
|
|
|
|
|
<h2 id="pill_{{title}}" class="visuallyhidden">{{title}}</h2>
|
2016-06-08 15:15:59 +01:00
|
|
|
{% for label, option, link, count in items %}
|
2016-04-13 12:50:28 +01:00
|
|
|
{% if current_value == option %}
|
2016-06-08 15:15:59 +01:00
|
|
|
<span aria-hidden="true">
|
2016-04-13 12:50:28 +01:00
|
|
|
{% else %}
|
2016-06-08 15:15:59 +01:00
|
|
|
<a href="{{ link }}">
|
|
|
|
|
{% endif %}
|
|
|
|
|
{{ big_number(count, smaller=True) }}
|
|
|
|
|
<div class="pill-label">{{ label }}</div>
|
|
|
|
|
{% if current_value == option %}
|
|
|
|
|
</span>
|
|
|
|
|
{% else %}
|
|
|
|
|
</a>
|
2016-04-13 12:50:28 +01:00
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</nav>
|
2016-06-08 15:15:59 +01:00
|
|
|
{% endmacro %}
|