{% extends "layout.html" %} {% import 'macros.html' as macros %} {% macro task_group(group, name) %} {% if group[name]|length > 0 %}

{{ name|capitalize }}

{% for task in group[name] %}
{{ task.description|urlize }}
{% if task.status not in ['deleted', 'completed'] %}
{% endif %} {% if task.status not in ['deleted', 'completed'] %} {% endif %}
{% if task.annotations %} {% endif %}
{% endfor %}
{% endif %} {% endmacro %} {% macro badge(group, name, color) %} {% set l = group[name]|length %} {% if l > 0 %} {{ l }}{% endif %} {% endmacro %} {% block content %}
{% for name in groups %} {% set group = groups[name] %}
{{ task_group(group, 'pending') }} {{ task_group(group, 'waiting') }} {{ task_group(group, 'completed') }} {{ task_group(group, 'other') }}
{% endfor %} {{ macros.annotate_modal() }}
{% endblock content %}