{% extends "main.html" %} {%load static%} {% block content %}

{{task.name}}

Total Time: {{ task.total_task_time.0 }}{% if task.total_task_time.0 == 1 %}hr{% else %}hrs{% endif %} {{ task.total_task_time.1 }}{% if task.total_task_time.1 == 1 %}min{% else %}mins{% endif %} {{ task.total_task_time.2 }}{% if task.total_task_time.2 == 1 %}sec{% else %}secs{% endif %}

Description: {{task.description}}

Project: {{task.project.name}}

Epic: {{task.epic.title}}

Start Date: {{task.start_date}}

End Date: {{task.end_date}}

Assigned To: {{task.assigned_to.user.first_name}} {{task.assigned_to.user.last_name}}

Extra: {{task.extra}}

Status: {% if task.status == 'Closed' %} {{task.status}} {% endif %} {% if task.status == 'Open' %} {{task.status}} {% endif %} {% if task.status == 'Working On' %} {{task.status}} {% endif %}

Related Files: Documentation.pdf, Project.doc

Points

{% if points %} {% for point in points %}
{% if point.status == 'Completed' %}

{{point.text}}

{% else %}

{{point.text}}

{% endif %}
{% if point.status == 'Not Completed' or point.status == 'Paused' and not point.status == 'Completed' %} {% endif %} {% if point.status == 'Working On' and not point.status == 'Completed' %} {% endif %} {% if not point.status == 'Completed' and not point.status == 'Paused' %} {% endif %} {% if point.status == 'Completed' %} {% endif %} {% if not point.status == 'Completed' %}
{% csrf_token %}
{% endif %}

Total Time: {{ point.total_activity_time.0 }} hours, {{ point.total_activity_time.1 }} minutes, {{ point.total_activity_time.2 }} seconds

{% if point.status == 'Completed' %}

Completed

{% elif point.status == 'Working On' %}

Working On

{% elif point.status == 'Paused' %}

Paused

{% else %}

Created

{% endif %}
{% endfor %} {% else %} No Available Points {% endif %}

Tags:

{% endblock content %}