{% extends "./template.html" %} {% block content %}

Search Tags

{% csrf_token %}
{{ search_form.search_for }}
{% if project_results %}

Project Results

{% for row in project_results %} {% endfor %}
Project ID Project Name Organisation Project Status Project End Date
PRO{{ row.project_id }} {{ row.project_name }} {{ row.organisation_id.organisation_name }} {{ row.project_status }} {{ row.project_end_date }}
{% endif %} {% if task_results %}

Task Results

{% for row in task_results %} {% endfor %}
Task ID Task Description Organisation Task Status Task End Date
TASK{{ row.task_id }} {{ row.task_short_description }} {{ row.organisation_id.organisation_name }} {{ row.task_status }} {{ row.task_end_date }}
{% endif %} {% if requirement_results %}

Requirement Results

{% for row in requirement_results %} {% endfor %}
Requirement ID Requirement Name Requirement Type
REQ{{ row.requirement_id }} {{ row.requirement_title }} {{ row.requirement_type }}
{% endif %} {% if opportunity_results %}

Opportunity Results

{% for row in opportunity_results %} {% endfor %}
Opportunity ID Opportunity Name Opportunity Stage Expected Close Date
OPP{{ row.opportunity_id }} {{ row.opportunity_name }} {{ row.opportunity_stage }} {{ row.opportunity_expected_close_date }}
{% endif %} {% endblock %}