mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-19 05:53:51 -04:00
16 lines
356 B
HTML
16 lines
356 B
HTML
|
|
{% macro tick_cross(yes, label) %}
|
|||
|
|
<li>
|
|||
|
|
{% if yes %}
|
|||
|
|
<span class="tick-cross-tick">
|
|||
|
|
<span class="visually-hidden">Can</span>
|
|||
|
|
{{ label}}
|
|||
|
|
</span>
|
|||
|
|
{% else %}
|
|||
|
|
<span class="tick-cross-cross">
|
|||
|
|
<span class="visually-hidden">Can’t</span>
|
|||
|
|
{{ label}}
|
|||
|
|
</span>
|
|||
|
|
{% endif %}
|
|||
|
|
</li>
|
|||
|
|
{% endmacro %}
|