{% extends "base.html" %} {% block content %}
{% if tasks %} {% for task in tasks %}
{% if task.due_date %}
{{ task.due_date.strftime('%b %d') }}
{% endif %}
{% if task.description %}
{{ task.description }}
{% endif %} {% if task.tags %}
{% for tag in task.tags %} {% set bg_color = tag.color + "20" %} {{ tag.name }} {% endfor %}
{% endif %}
{% endfor %} {% else %}

No tasks found. Add one above to get started!

{% endif %}
{% endblock %}