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

Part A Summary ‐ Summary & Approval Preview Part A

Completion Checklist

{% csrf_token %}
Section Complete Preview
Section A1 ‐ Burn Summary & Approval {% if current.is_draft %}{{ form.summary }}{% else %}{{ current.pre_state.summary|yesno:"Complete,Incomplete" }}{% endif %}
Section A2 ‐ Risk management context statement {% if current.is_draft %}{{ form.context_statement }}{% else %}{{ current.pre_state.context_statement|yesno:"Complete,Incomplete" }}{% endif %}
Section A2 ‐ Context map {% if current.is_draft %}{{ form.context_map }}{% else %}{{ current.pre_state.context_map|yesno:"Complete,Incomplete" }}{% endif %}
Section A3 ‐ Burn objectives {% if current.is_draft %}{{ form.objectives }}{% else %}{{ current.pre_state.objectives|yesno:"Complete,Incomplete" }}{% endif %}
Section A3 ‐ Success criteria {% if current.is_draft %}{{ form.success_criteria }}{% else %}{{ current.pre_state.success_criteria|yesno:"Complete,Incomplete" }}{% endif %}
Section A4 ‐ Burn priority justification {% if current.is_draft %}{{ form.priority_justification }}{% else %}{{ current.pre_state.priority_justification|yesno:"Complete,Incomplete" }}{% endif %}
Section A5 ‐ Prescribed burn complexity analysis summary {% if current.is_draft %}{{ form.complexity_analysis }}{% else %}{{ current.pre_state.complexity_analysis|yesno:"Complete,Incomplete" }}{% endif %}
Section A6 ‐ Prescribed burn risk register {% if current.is_draft %}{{ form.risk_register }}{% else %}{{ current.pre_state.risk_register|yesno:"Complete,Incomplete" }}{% endif %}
{% endblock %}