2015-12-17 11:52:24 +00:00
|
|
|
|
{% macro big_number(number, label) %}
|
|
|
|
|
|
<div class="big-number">
|
|
|
|
|
|
{{ number }}
|
|
|
|
|
|
<span class="big-number-label">{{ label }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endmacro %}
|
2016-03-17 11:45:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
2016-03-23 09:21:35 +00:00
|
|
|
|
{% macro big_number_with_status(number, label, failures, failure_percentage, danger_zone=False) %}
|
2016-03-17 11:45:48 +00:00
|
|
|
|
<div class="big-number-with-status">
|
|
|
|
|
|
{{ big_number(number, label) }}
|
2016-03-23 09:21:35 +00:00
|
|
|
|
<div class="big-number-status{% if danger_zone %}-failing{% endif %}">
|
|
|
|
|
|
{% if failures %}
|
|
|
|
|
|
{{ failures }} failed – {{ failure_percentage }}%
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
No failures
|
|
|
|
|
|
{% endif %}
|
2016-03-17 11:45:48 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endmacro %}
|