2019-09-12 16:45:39 +01:00
|
|
|
{% macro tick_cross(yes, label, truthy_hint='Can', falsey_hint='Cannot') %}
|
2016-07-07 09:17:50 +01:00
|
|
|
{% if yes %}
|
2023-11-09 12:00:31 -07:00
|
|
|
<li>
|
2016-07-07 09:17:50 +01:00
|
|
|
<span class="tick-cross-tick">
|
2023-06-16 14:55:24 -04:00
|
|
|
<span class="usa-sr-only">{{ truthy_hint }}</span>
|
2016-07-07 09:17:50 +01:00
|
|
|
{{ label}}
|
|
|
|
|
</span>
|
2023-11-09 12:00:31 -07:00
|
|
|
</li>
|
2016-07-07 09:17:50 +01:00
|
|
|
{% endif %}
|
|
|
|
|
{% endmacro %}
|
2018-02-27 11:33:26 +00:00
|
|
|
|
|
|
|
|
{% macro tick_cross_done_not_done(yes, label) %}
|
|
|
|
|
{{ tick_cross(yes, label, truthy_hint='Done: ', falsey_hint='Not done: ') }}
|
|
|
|
|
{% endmacro %}
|