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

Part B Summary ‐ Burn Implementation Plan Preview Part B

Completion Checklist

{% csrf_token %}
Section Complete Preview
Section B1 ‐ Pre‐burn actions {% if current.is_draft %}{{ form.pre_actions }}{% else %}{{ current.day_state.pre_actions|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B2 ‐ Day of burn actions {% if current.is_draft %}{{ form.actions }}{% else %}{{ current.day_state.actions|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B3 ‐ Roads {% if current.is_draft %}{{ form.roads }}{% else %}{{ current.day_state.roads|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B4 ‐ Traffic Control Diagrams {% if current.is_draft %}{{ form.traffic }}{% else %}{{ current.day_state.traffic|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B3 ‐ Tracks and Trails {% if current.is_draft %}{{ form.tracks }}{% else %}{{ current.day_state.tracks|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B5 ‐ Burning prescription {% if current.is_draft %}{{ form.burning_prescription }}{% else %}{{ current.day_state.burning_prescription|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B5 ‐ Edging plan {% if current.is_draft %}{{ form.edging_plan }}{% else %}{{ current.day_state.edging_plan|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B5 ‐ Lighting sequence {% if current.is_draft %}{{ form.lighting_sequence }}{% else %}{{ current.day_state.lighting_sequence|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B5 ‐ Areas to be excluded from ignition {% if current.is_draft %}{{ form.exclusion_areas }}{% else %}{{ current.day_state.exclusion_areas|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B6 ‐ Contingency plan {% if current.is_draft %}{{ form.contingency_plan }}{% else %}{{ current.day_state.contingency_plan|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B7 ‐ Organisational structure and communications plan {% if current.is_draft %}{{ form.organisational_structure }}{% else %}{{ current.day_state.organisational_structure|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B8 ‐ Briefing checklist {% if current.is_draft %}{{ form.briefing }}{% else %}{{ current.day_state.briefing|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B12 ‐ Operations map {% if current.is_draft %}{{ form.operation_maps }}{% else %}{{ current.day_state.operation_maps|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
Section B13 ‐ Aerial burning map {% if current.is_draft %}{{ form.aerial_maps }}{% else %}{{ current.day_state.aerial_maps|yesno:"Complete,Incomplete,Not Applicable" }}{% endif %}
{% endblock %}