{% extends '../template.html' %} {% block content %} {% load humanize %} {% load static %}

Task Information - {{ task_id }}

{{ task_results.task_short_description }}

{{ task_readonly_form.media }} {{ task_readonly_form.task_long_description }}
{% if task_results.organisation_id %}
Organisation: {{ task_results.organisation_id }}
{% endif %}
Task Status: Completed
Start Date: {{ task_results.task_start_date }}
End Date: {{ task_results.task_end_date }}
{% if to_do_results %}

Task To Do

{% for row in to_do_results %} {% endfor %}
To Do Item Status Closed by
{{ row.to_do }} {% if row.to_do_completed %} Completed {% else %} Not Completed {% endif %} {% if row.to_do_completed %} {{ row.change_user }} {% endif %}
{% endif %} {% if task_history_collective %}

Task History

{% for row in task_history_collective %}
{{ row.submit_history }}
{{ row.task_history }}
{% endfor %}
{% endif %} {% if email_results %}

Task Email History

{% for row in email_results %} {% endfor %}
Subject Date Sent By
{% if email_permission > 1 %} {{ row.email_subject }} {% else %} {{ row.email_subject }} {% endif %} {{ row.date_created }} {{ row.change_user }}
{% endif %} {% if associated_project_results %}

Associated Projects

{% for row in associated_tasks_results %} {% endfor %}
Project Id Short Description End Date
Project - {{ row.project_id.project_id }} {{ row.project_id }} {{ row.project_id.project_end_date }}
{% endif %} {% if task_customers_results %}

Task Customers

{% for row in task_customers_results %} {% endfor %}
Customer Name Customer Description Customer Email
{{ row.customer_id.customer_first_name }} {{ row.customer_id.customer_last_name }} {{ row.customer_description }} {{ row.customer_id.customer_email }}
{% endif %} {% if costs_results %}

Task Costs

{% for row in costs_results %} {% endfor %}
Item Cost Running Total
{{ row.cost_description }} {{ row.cost_amount|intcomma }} --filled-by-javascript--
GRAND TOTAL --fill out--
{% endif %} {% if quote_results %}

Task Quotes

{% for row in quote_results %} {% endfor %}
Quote Title Valid Till Quote Stage
{{ row.quote_title }} {{ row.quote_valid_till }} {{ row.quote_stage_id }}
{% endif %} {% if bug_results %}

Assigned Bugs

{% if bug_permission == 4 %} {% endif %} {% for row in bug_results %} {% if bug_permission == 4 %} {% endif %} {% endfor %}
Bug ID Bug Client Bug Description Bug StatusRemove Bug
{{ row.bug_code }} {{ row.bug_client }} {{ row.bug_description }} {{ row.bug_status }}Remove Bug
{% endif %} {% if assigned_results %}

Task Assigned Users

{% if assigned_results %} {% for row in assigned_results %} {% endfor %} {% endif %}
Username First Name Last name
{{ row.assigned_user__username }} {{ row.assigned_user__first_name }} {{ row.assigned_user__last_name }}
{% endif %} {% if group_list_results %}

Task Assigned Groups

{% for row in group_list_results %} {% endfor %}
Assigned Group Name
{{ row.group_id }}
{% endif %} {% endblock %}