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