{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% block title %}Event Checklist for Event N{{ object.event.pk|stringformat:"05d" }} {{ object.event.name }}{% endblock %} {% load help_text from filters %} {% load profile_by_index from filters %} {% block content %}

Event Checklist for Event N{{ object.event.pk|stringformat:"05d" }} {{ object.event.name }}

General
{{ object|help_text:'power_mic' }}
{{ object.power_mic.name }}

List vehicles and their drivers

    {% for i in object.vehicles.all %}
  • {{i}}
  • {% endfor %}
Safety Checks
{{ object|help_text:'safe_parking'|safe }}
{{ object.safe_parking|yesno|title }}
{{ object|help_text:'safe_packing'|safe }}
{{ object.safe_packing|yesno|title }}
{{ object|help_text:'exits'|safe }}
{{ object.exits|yesno|title }}
{{ object|help_text:'trip_hazard'|safe }}
{{ object.trip_hazard|yesno|title }}
{{ object|help_text:'warning_signs'|safe }}
{{ object.warning_signs|yesno|title }}
{{ object|help_text:'ear_plugs'|safe }}
{{ object.ear_plugs|yesno|title }}
Crew Record
{% for crew in object.crew.all %} {% endfor %}
Crewmember Start Time Role End Time
{{crew.crewmember}} {{crew.start}} {{crew.role}} {{crew.end}}
Power
{% if object.medium_event %} Medium Event {% else %} Small Event
{{ object|help_text:'rcds'|safe }}
{{ object.rcds|yesno|title }}
{{ object|help_text:'supply_test'|safe }}
{{ object.supply_test|yesno|title }}
{{ object|help_text:'earthing'|safe }}
{{ object.earthing|yesno|title }}
{{ object|help_text:'pat'|safe }}
{{ object.pat|yesno|title }}
{% endif %}
{% include 'partials/last_edited.html' with target="eventchecklist_history" %}
{% endblock %}