Files
notifications-admin/app/templates/components/tick-cross.html
2023-11-09 12:00:31 -07:00

15 lines
416 B
HTML

{% macro tick_cross(yes, label, truthy_hint='Can', falsey_hint='Cannot') %}
{% if yes %}
<li>
<span class="tick-cross-tick">
<span class="usa-sr-only">{{ truthy_hint }}</span>
{{ label}}
</span>
</li>
{% endif %}
{% endmacro %}
{% macro tick_cross_done_not_done(yes, label) %}
{{ tick_cross(yes, label, truthy_hint='Done: ', falsey_hint='Not done: ') }}
{% endmacro %}