{% if organisation_permissions > 1 %}
Actions
{% endif %}
Assigned Projects
{% if project_results %}
Project ID |
Project Name |
Project End Date |
Project Status |
{% for row in project_results %}
PRO{{ row.project_id }} |
{{ row.project_name }} |
{{ row.project_end_date }} |
{{ row.project_status }} |
{% endfor %}
{% else %}
Sorry. There are currently no projects for this customer
{% endif %}
Assigned Tasks
{% if task_results %}
Task ID |
Task Name |
Task End Date |
Task Status |
{% for row in task_results %}
TASK{{ row.task_id }} |
{{ row.task_short_description }} |
{{ row.task_end_date }} |
{{ row.task_status }} |
{% endfor %}
{% else %}
Sorry. There are currently no tasks for this customer.
{% endif %}