{% extends "admin/base_site.html" %} {% load i18n staticfiles admin_list %} {% block breadcrumbs %} {% endblock %} {% block contentwrapper %}

Part C Summary ‐ Burn Closure and Evaluation Preview Part C

Completion Checklist

{% if not current.is_approved %}
Warning! In order to edit this section, the ePFP needs to be approved.
{% endif %}
{% csrf_token %}
Section Complete Preview
Section C1 ‐ Post-burn actions {% if not current.is_closed %}{{ form.post_actions }}{% else %}{{ current.post_state.post_actions|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section C2 ‐ Burn evaluation summary {% if not current.is_closed %}{{ form.evaluation_summary }}{% else %}{{ current.post_state.evaluation_summary|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section C3 ‐ Burn evaluation ‐ Lessons learned {% if not current.is_closed %}{{ form.evaluation }}{% else %}{{ current.post_state.evaluation|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section C4 ‐ Post‐burn checklist {% if not current.is_closed %}{{ form.post_burn_checklist }}{% else %}{{ current.post_state.post_burn_checklist|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section C4 ‐ Closure declaration {% if not current.is_closed %}{{ form.closure_declaration }}{% else %}{{ current.post_state.closure_declaration|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B3 ‐ Sign Inspection and Surveillance {% if not current.is_closed %}{{ form.signage }}{% else %}{{ current.post_state.signage|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Maps of burn after each ignition {% if not current.is_closed %}{{ form.post_ignitions }}{% else %}{{ current.post_state.post_ignitions|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Aerial plot burnt/unburnt {% if not current.is_closed %}{{ form.aerial_intensity }}{% else %}{{ current.post_state.aerial_intensity|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Satellite imagery burnt/unburnt {% if not current.is_closed %}{{ form.satellite_intensity }}{% else %}{{ current.post_state.satellite_intensity|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Other {% if not current.is_closed %}{{ form.other }}{% else %}{{ current.post_state.other|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
{% endblock %}