{% extends "./template.html" %}
{% block content %}
NearBeach Alerts!
{% if project_results %}
Project ID |
Project Name |
End Date! |
{% for row in project_results %}
PRO{{ row.project_id }} |
{{ row.project_name }} |
{{ row.project_end_date }} |
{% endfor %}
{% endif %}
{% if task_results %}
Task ID |
Task Name |
End Date! |
{% for row in task_results %}
TASK{{ row.task_id }} |
{{ row.task_short_description }} |
{{ row.task_end_date }} |
{% endfor %}
{% endif %}
{% if opportunity_results %}
Opportunity ID |
Opportunity Name |
End Date! |
{% for row in opportunity_results %}
OPP{{ row.opportunity_id }} |
{{ row.opportunity_name }} |
{{ row.opportunity_expected_close_date }} |
{% endfor %}
{% endif %}
{% if quote_results %}
Quote ID |
Quote Title |
End Date! |
{% for row in quote_results %}
QUOTE{{ row.quote_id }} |
{{ row.quote_title }} |
{{ row.quote_valid_till }} |
{% endfor %}
{% endif %}
Continue onto Dashboard
{% endblock %}