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

Search NearBeach

{% csrf_token %}
{{ search_form.search_for }}

Projects

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

Tasks

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

Opportunities

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

Requirements

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

Request for Change

{% for row in rfc_results %} {% endfor %}
RFC ID RFC Title RFC Status
RFC{{ row.rfc_id }} RFC{{ row.rfc_title }} RFC{{ row.rfc_status }}
{% endblock %}