{% extends "admin/base_site.html" %} {% load i18n staticfiles admin_list %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if current.planning_status == current.PLANNING_DRAFT %}

Submit for Corporate Approval

{% if not current.can_corporate_approve %}
Please complete any mandatory Corporate Burn Attributes before submitting for corporate approval.
They are highlighted in the tables in red below.
Click here to navigate to Section A1 - Summary & approval.
{% endif %}
Are you sure you wish to submit this to Corporate Executive?
This will lock the information in the table below and will prevent further modification of this information for the remainder of the ePFP process.
{% csrf_token %} {% if current.contentious %} {% elif current.contentious == False %} {% else %} {% endif %}
Burn ID {{ current.burn_id }}
Burn Name {{ current.name }}
Region {{ current.region }}
District {{ current.district }}
Year {{ current.planned_year }}
Season {{ current.get_planned_season_display }}
Year last burnt {% if current.last_season_unknown %}Unknown{% elif current.last_year %}{{ current.last_year }}{% else %}Last year burnt is a required CBAS field unless marked as unknown.{% endif %}
Season last burnt {% if current.last_season_unknown %}Unknown{% elif current.last_season %}{{ current.get_last_season_display }}{% else %}Last season burnt is a required CBAS field unless marked as unknown.{% endif %}
Contentious burn Yes
Contentious rationale {{ current.contentious_rationale }}
Contentious burn No
Contentious burn Contentious burn is a required CBAS field and must be either Yes or No.

The following Corporate Burn Attributes will be submitted for approval but will not be locked.
Aircraft burn {% if current.aircraft_burn %}Yes{% else %}No{% endif %}
Program {{ current.allocation }}
Purposes {% if current.purposes.all %}
    {% for purpose in current.purposes.all %}
  • {{ purpose }}
  • {% endfor %}
{% else %}This ePFP must contain at least one burn purpose.{% endif %}
Remote Sensing Priority {% if current.remote_sensing_priority %}{{ current.get_remote_sensing_priority_display }}{% else %}Remote sensing priority is a required CBAS field.{% endif %}
Treatment percentage {% if current.treatment_percentage %}{{ current.treatment_percentage }}%{% else %}The treatment percentage must be between 1 and 100.{% endif %}
Planned burn area {% if current.area %}{{ current.area }} ha{% else %} Planned burn area is a required CBAS field.{% endif %}
Perimeter {% if current.perimeter %}{{ current.perimeter }} km{% else %}Perimeter is a required CBAS field.{% endif %}
Location {% if current.location %}{{ current.location_text }}{% else %}Location is a required CBAS field.{% endif %}
Burn priority {{ current.get_priority_display }}
Program allocation {% if current.allocation == None %}Program allocation is a required CBAS field.{% else %}{{ current.get_allocation_display }}{% endif %}
{% load i18n admin_urls %}
{% else %}

Apply Corporate Approval

Do you wish to apply corporate approval to this ePFP? This will lock CBAS information prevents further modification of this information for the remainder of the ePFP process.

{% csrf_token %} {% load i18n admin_urls %}
{% endif %} {% endblock %}