{% extends "admin/base_site.html" %} {% load i18n staticfiles admin_list %} {% block breadcrumbs %} {% endblock %} {% block extrahead %}{{ block.super }} {{ media }} {% endblock %} {% block contentwrapper %} {% url 'admin:prescription_priorityjustification_changelist' current.id as priority_justification %}

Summary & Approval

{% if current.is_draft %}
{% csrf_token %}
Burn ID * {{ current.burn_id }}
Name * {% if current.planning_status == current.PLANNING_DRAFT %}{{ form.form.name }}{% else %}{{ current.name }}{% endif %}
Planned burn
season and year *
{% if current.planning_status == current.PLANNING_DRAFT %} {{ form.form.planned_season }}
{{ form.form.planned_year }} {% else %} {{ current.season }} {% endif %}
Last burnt
season and year
{% if current.planning_status == current.PLANNING_DRAFT %} {{ form.form.last_season }} or Last Season Unknown? {{ form.form.last_season_unknown }}
{{ form.form.last_year }} or Last Year Unknown? {{ form.form.last_year_unknown }} {% else %} {{ current.last_season_burnt }} {{ current.last_year_burnt }} {% endif %}
Region * {{ current.region }} District * {{ current.district }}
Location * {% if current.is_draft %} You must enter/select a value in all fields.
Alternatively, if entering only a locality (first input field), location will be stored as "Within the locality of ____"

{{ form.form.location }} {% else %} {{ current.location_text }} {% endif %}
Forest Blocks (if applicable) {{ form.form.forest_blocks }}
Overall Priority * {{ current.get_priority_display }} ‐ Edit Overall Rationale * {{ current.rationale }} ‐ Edit
Contentious * {% if current.planning_status == current.PLANNING_DRAFT %}{{ form.form.contentious }}{% else %}{{ current.contentious }}{% endif %} Contentious Rationale {% if current.planning_status == current.PLANNING_DRAFT %}{{ form.form.contentious_rationale }}{% else %}{{ current.contentious_rationale }}{% endif %}
Aircraft burn * {{ form.form.aircraft_burn }} Remote sensing priority * {{ form.form.remote_sensing_priority }}
Burn Purpose(s) * Burn purpose text must be updated for Biodiversity Management, Bushfire Risk Management and Vegetation Management purposes.
All other purposes will use the default text as per Appendix 4 in the Prescribed Fire Manual.

{{ form.form.purposes }}
Program allocation * {{ form.form.allocation }} Estimate of the planned area
that will be treated (%) *
{{ form.form.treatment_percentage }}
Planned Burn Area (ha) * {{ form.form.area }} Perimeter/Length (kms) * {{ form.form.perimeter }}
Burn Tenure(s) {{ form.form.tenures }}
Vegetation Type(s) {{ form.form.vegetation_types }}
Shire(s) {{ form.form.shires }}
Forecast Area(s) {{ form.form.forecast_areas }}
Bushfire Act Zone {{ form.form.bushfire_act_zone }}
Prohibited Period {{ form.form.prohibited_period }}
Prescribing Officer {{ form.form.prescribing_officer }} Shortcode {{ form.form.short_code }}
{% else %}
Burn ID * {{ current.burn_id }}
Name * {{ current.name }}
Planned burn
season and year *
{{ current.season }} Last burnt
season and year
{{ current.last_season_burnt }} {{ current.last_year_burnt }}
Region * {{ current.region }} District * {{ current.district }}
Location * {{ current.location_text }}
Forest Blocks (if applicable) {{ current.forest_blocks }}
Overall Priority * {{ current.get_priority_display }} Overall Rationale * {{ current.rationale }}
Contentious * {{ current.contentious|yesno:"Yes,No" }} Contentious Rationale {{ current.contentious_rationale }}
Aircraft burn * {{ current.aircraft_burn|yesno:"Yes,No" }} Remote sensing priority * {{ current.remote_sensing_priority }}
Burn Purpose(s) * {{ current.purposes.all|join:", " }}
Program allocation * {{ current.allocation }} Percentage of the planned area
that will be treated (%) *
{{ current.treatment_percentage }}
Planned Burn Area (ha) * {{ current.area }} Perimeter/Length (kms) * {{ current.perimeter }}
Burn Tenure(s) {{ current.tenures.all|join:", " }}
Vegetation Type(s) {{ current.vegetation_types.all|join:", " }}
Shire(s) {{ current.shires.all|join:", " }}
Forecast Area(s) {{ current.forecast_areas.all|join:", " }}
Bushfire Act Zone {{ current.bushfire_act_zone }}
Prohibited Period {{ current.prohibited_period }}
Prescribing Officer {{ current.prescribing_officer }} Shortcode {{ current.short_code }}
{% endif %}
Date Created {{ current.created }} Date Last Saved {{ current.modified }}
Risk Level {{ current.maximum_risk_html }} Complexity Rating {{ current.maximum_complexity }}
Endorsement Status {{ current.get_endorsement_status_display }}
Approval Status {{ current.get_approval_status_display }}
Planning Status {{ current.get_planning_status_display }}
Ignition Status {{ current.get_ignition_status_display }}
Burn Closure Status {{ current.get_status_display }}
{% endblock %}