{% extends 'team_base.html' %} {% load commonmark %} {% load bootstrap3 %} {% load teams_tags %} {% block title %} Tasks | {{ block.super }} {% endblock %} {% block team_content %}

Tasks

The {{ team.name }} Team is responsible for the following tasks

{% for task in team.tasks.all %} {% endfor %}
Name Description When Completed? Action
{{ task.name }} {{ task.description }}
  • Start: {{ task.when.lower|default:"N/A" }}
  • Finish: {{ task.when.upper|default:"N/A" }}
{{ task.completed }} Details {% if request.user in team.responsible_members.all %} Edit Task {% endif %}
{% if request.user in team.responsible_members.all %} Create Task {% endif %}
{% endblock %}