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

NearBeach Alerts!

{% if project_results %}

Projects overdue

{% for row in project_results %} {% endfor %}
Project ID Project Name End Date!
PRO{{ row.project_id }} {{ row.project_name }} {{ row.project_end_date }}
{% endif %} {% if task_results %}

Tasks overdue

{% for row in task_results %} {% endfor %}
Task ID Task Name End Date!
TASK{{ row.task_id }} {{ row.task_short_description }} {{ row.task_end_date }}
{% endif %} {% if opportunity_results %}

Opportunity overdue

{% for row in opportunity_results %} {% endfor %}
Opportunity ID Opportunity Name End Date!
OPP{{ row.opportunity_id }} {{ row.opportunity_name }} {{ row.opportunity_expected_close_date }}
{% endif %} {% if quote_results %}

Quotes overdue

{% for row in quote_results %} {% endfor %}
Quote ID Quote Title End Date!
QUOTE{{ row.quote_id }} {{ row.quote_title }} {{ row.quote_valid_till }}
{% endif %} Continue onto Dashboard {% endblock %}