mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Merge pull request #766 from alphagov/visual-refactor-team-page
Visual refactor team page
This commit is contained in:
15
app/templates/components/tick-cross.html
Normal file
15
app/templates/components/tick-cross.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user