{% extends "./template.html" %} {% block content %} {% load static %}
{% csrf_token %}

Search Projects and Tasks

Projects

{% if project_results %} {% for row in project_results %} {% endfor %}
Assign Project Name Project End Date Project Status
PRO{{ row.project_id }} {{ row.project_name }} {{ row.project_end_date }} {{ row.project_status }}
{% else %} Sorry. There are currently no projects for this customer. {% endif %}

Tasks

{% if task_results %} {% for row in task_results %} {% endfor %}
Assign Task Name Task End Date Task Status
TASK{{ row.task_id }} {{ row.task_short_description }} {{ row.task_end_date }} {{ row.task_status }}
{% else %}

Sorry. There are currently no tasks for this customer.

{% endif %}
{% endblock %}