{% extends 'index.html' %} {% load static %} {% load form_filters %} {% block title %} Drone Incident Report {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Drone Incident Report Form

{% csrf_token %} {{ wizard.management_form }}
{% for field in form %}
{% if field.field.widget.input_type == "checkbox" %}
{{ field|add_class:"form-check-input" }}
{% else %} {{ field|add_class:"form-control" }} {% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors|striptags }}
{% endif %}
{% endfor %}
Cancel
{% if wizard.steps.prev %} {% endif %}
{% endblock %}