mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
16 lines
478 B
HTML
16 lines
478 B
HTML
{% macro status_box(number, label, failing=false, percentage=None, url=None) %}
|
|
<div class="big-number-with-status">
|
|
<div class="big-number-status{% if failing %} big-number-status--failing{% endif %}">
|
|
{% if url %}
|
|
<a class="usa-link" href="{{ url }}">{{ number }} {{ label }}</a>
|
|
{% else %}
|
|
{{ number }} {{ label }}
|
|
{% endif %}
|
|
|
|
{% if percentage %}
|
|
- {{ percentage }}%
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|