{% extends 'team_base.html' %} {% load commonmark %} {% load bootstrap3 %} {% block title %} {{ task.name }} {% endblock %} {% block team_content %}

Task: {{ task.name }} ({% if not task.completed %}Not {% endif %}Completed)

{{ task.description|untrustedcommonmark }}
{% if user in task.team.members.all %}

{% csrf_token %} {% bootstrap_form comment_form %}
{% endif %}
{% endblock %}