{% extends "layout.html" %} {% block content %}

{{ task.name }}

Status: {{ task.status|upper }}
{% if task.is_template %} Template (Auto-Add) {% endif %}

{% if task.activity_id %}
{% else %} No activity linked. Edit task to assign one. {% endif %}
Back to Tasks

Comments

{% if task.comments %} {% for comment in task.comments %}

{{ comment.text }}

{{ comment.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endfor %} {% else %}

No comments yet.

{% endif %}
{% endblock %}