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

Project Information - {{ project_id }}

{{ project_results.project_name }}

{{ project_readonly_form.media }} {{ project_readonly_form.project_description }}
{% if project_results.organisation_id %}
Organisation: {{ project_results.organisation_id }}
{% endif %}
Project Status: Completed
Start Date: {{ project_results.project_start_date }}
End Date: {{ project_results.project_end_date }}
{% if to_do_results %}

Project 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 project_history_collective %}

Project History

{% for row in project_history_collective %}
{{ row.submit_history }}
{{ row.project_history }}
{% endfor %}
{% endif %} {% if email_results %}

Project 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_tasks_results %}

Associated Tasks

{% for row in associated_tasks_results %} {% endfor %}
Task Id Short Description End Date
Task - {{ row.task_id.task_id }} {{ row.task_id }} {{ row.task_id.task_end_date }}
{% endif %} {% if project_customers_results %}

Project Customers

{% for row in project_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 %}

Project 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 %}

Project 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 %}

Project 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 %}

Project Assigned Groups

{% for row in group_list_results %} {% endfor %}
Assigned Group Name
{{ row.group_id }}
{% endif %} {% if project_permissions == 4 and project_customer_results %}

Submitted Kudos

{% if kudos_results %} {% for kudos in kudos_results %} {% endfor %}
Customer Name Rating Link
{{ kudos.customer.customer_first_name }} {{ kudos.customer.customer_last_name }} {{ kudos.kudos_rating }} Link
{% else %}
{% csrf_token %} Sorry, there has not been any kudos created.
{% endif %}
{% endif %} {% endblock %}