Files
notifications-admin/app/templates/partials/count.html
T

19 lines
567 B
HTML
Raw Normal View History

{% from "components/big-number.html" import big_number %}
2016-06-08 16:34:26 +01:00
{% from "components/pill.html" import pill %}
2016-04-27 09:28:42 +01:00
<div class="ajax-block-container">
{% if notifications_deleted %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row bottom-gutter-1-2">
{% for label, query_param, url, count in counts %}
<div class="govuk-grid-column-one-quarter">
{{ big_number(count, label, smaller=True) }}
</div>
{% endfor %}
</div>
{% else %}
<div class="bottom-gutter">
{{ pill(counts, request.args.get('status', '')) }}
</div>
{% endif %}
2016-04-27 09:28:42 +01:00
</div>