{% macro tick_cross(yes, label, truthy_hint='Can', falsey_hint='Can’t') %}
  • {% if yes %} {{ truthy_hint }} {{ label}} {% else %} {{ falsey_hint }} {{ label}} {% endif %}
  • {% endmacro %} {% macro tick_cross_done_not_done(yes, label) %} {{ tick_cross(yes, label, truthy_hint='Done: ', falsey_hint='Not done: ') }} {% endmacro %}