{% extends "base.html" %} {% block content %}
{{ heading }}
{% for task in tasks %} {% if task.done == True %} {% set textColor = "color: grey;" %} {% else %} {% set textColor = "color: black;" %} {% endif %}
{{ task.time }}
{{ task.markup|safe }}
{{ task.priority }}
{% endfor %} {% endblock %}