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

My Notes

{% if task.status == 'Open' %}

{{task.name}}

{% endif %} {% if task.status == 'Working On' %}

{{task.name}}

{% endif %} {% if task.status == 'Closed' %}

{{task.name}}

{% endif %}

Project: {{task.project.name}}

Start Date: {{task.start_date}}

End Date: {{task.end_date}}

Epic: {{task.epic.title}}

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 project.status == 'Working on' %} {{task.status}} {% endif %}

Related Files: Documentation.pdf, Project.doc

Points

{% if points %} {% for point in points %} {% if point.status == 'Not Completed' %} {% endif %} {% if point.status == 'Completed' %} {% endif %} {% if point.status == 'Working On' %} {% endif %} {% endfor %} {% else %} {% endif %}
Point Status

{{point.text}}

{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
No Available Points

Timline

Task Time: 300 min User Date Total Time
Nataly 6-9-2023 50min

Description:

{{task.description}}

Tags:

{% endblock content %}