2018-09-21 14:24:31 +01:00
|
|
|
{% macro task_list_item(completed, label, link) %}
|
2018-08-23 14:15:16 +01:00
|
|
|
<li class="task-list-item">
|
2023-08-08 16:19:17 -04:00
|
|
|
<span aria-describedby="{{ label|id_safe }}"><a class="usa-link" href="{{ link }}">{{ label }}</a></span>
|
2018-08-23 14:15:16 +01:00
|
|
|
{% if completed %}
|
2018-09-21 14:24:31 +01:00
|
|
|
<strong class="task-list-indicator-completed" id="{{ label|id_safe }}">Completed</strong>
|
2018-08-23 14:15:16 +01:00
|
|
|
{% else %}
|
2018-09-21 14:24:31 +01:00
|
|
|
<strong class="task-list-indicator-not-completed" id="{{ label|id_safe }}">Not completed</strong>
|
2018-08-23 14:15:16 +01:00
|
|
|
{% endif %}
|
|
|
|
|
</li>
|
|
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
|
|
{% macro task_list_wrapper() %}
|
|
|
|
|
<ul class="task-list">
|
|
|
|
|
{{ caller() }}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endmacro %}
|