{% extends 'base.html' %} {% block title %}Projects{% endblock %} {% block content %}

Projects

New Project
{% for project in projects %}

{{ project.name }}

{% for task in project.tasks %} {% if show_completed or task.status_display != 'DONE' %}
{% if not task.status_display == 'DONE' %} {% endif %}

{% if task.status_display == 'DONE' %} {{ task.title }} {% else %} {{ task.title }} {% endif %}

{{ task.status_display }} {{ task.priority_display }} {% if task.due_date_display %} {{ task.due_date_display }} {% endif %}
{% if task.status_display != 'DONE' and task.description %}

{{ task.description|truncate(100) }}

{% endif %} {% if task.status_display == 'DONE' and task.completion_info %}

{{ task.completion_info }}

{% endif %}
{% endif %} {% endfor %}
{% endfor %} {% endblock %} {% block scripts %} {% endblock %}