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

Link Object to Opportunity

Opportunity: {{ opportunity_results.opportunity_title }}
{% if destination == "requirement" %} {% for row in search_results %} {% endfor %}
Requirement ID Requirement Title
REQ{{ row.requirement_id }} {{ row.requirement_title }}
{% elif destination == "project" %} {% for row in search_results %} {% endfor %}
Project ID Project Title
PRO{{ row.project_id }} {{ row.project_name }}
{% elif destination == "task" %} {% for row in search_results %} {% endfor %}
Task ID Task Title
TASK{{ row.task_id }} {{ row.task_short_description }}
{% else %} Something went wrong. Please go back {% endif %}
{% endblock %}