{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load help_text from filters %} {% load profile_by_index from filters %} {% load yesnoi from filters %} {% load button from filters %} {% block content %}
{% button 'edit' url='ec_edit' pk=object.pk %} {% button 'view' url='event_detail' pk=object.pk text="Event" %} {% include 'partials/review_status.html' with perm=perms.RIGS.review_eventchecklist review='ec_review' %}
General
Date
{{ object.date }}
Venue
{% if object.venue %} {{ object.venue }} {% endif %}
{{ 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|yesnoi }}
{{ object|help_text:'safe_packing'|safe }}
{{ object.safe_packing|yesnoi }}
{{ object|help_text:'exits'|safe }}
{{ object.exits|yesnoi }}
{{ object|help_text:'trip_hazard'|safe }}
{{ object.trip_hazard|yesnoi }}
{{ object|help_text:'warning_signs'|safe }}
{{ object.warning_signs|yesnoi }}
{{ object|help_text:'ear_plugs'|safe }}
{{ object.ear_plugs|yesnoi }}
Crew Record
{% for crew in object.crew.all %} {% endfor %}
Crewmember Start Time Role End Time
{{crew.crewmember}} {{crew.start}} {{crew.role}} {{crew.end}}
Power {% include 'partials/event_size.html' with object=object.event.riskassessment %}
{% if object.event.riskassessment.event_size != 2 %}
{% if object.event.riskassessment.event_size == 1 %}
{{ object|help_text:'source_rcd'|safe }}
{{ object.source_rcd|yesnoi }}
{{ object|help_text:'labelling'|safe }}
{{ object.labelling|yesnoi }}
{{ object|help_text:'earthing'|safe }}
{{ object.earthing|yesnoi }}
{{ object|help_text:'pat'|safe }}
{{ object.pat|yesnoi }}

Tests at first distro

Test Value
Voltage
(cube meter)
{{ object|help_text:'fd_voltage_l1' }} {{ object|help_text:'fd_voltage_l2' }} {{ object|help_text:'fd_voltage_l3' }}
{{ object.fd_voltage_l1 }} {{ object.fd_voltage_l2 }} {{ object.fd_voltage_l3 }}
{{ object|help_text:'fd_phase_rotation'|safe }} {{ object.fd_phase_rotation|yesnoi }}
{{ object|help_text:'fd_earth_fault'|safe}} {{ object.fd_earth_fault }}
{{ object|help_text:'fd_pssc'}} {{ object.fd_pssc }}

Tests at 'Worst Case' points (at least 1 point required)

Test Point 1 Point 2 Point 3
{{ object|help_text:'w1_description'|safe}} {{ object.w1_description }} {{ object.w2_description|default:'' }} {{ object.w3_description|default:'' }}
{{ object|help_text:'w1_polarity'|safe}} {{ object.w1_polarity|yesnoi }} {{ object.w2_polarity|default:''|yesnoi }} {{ object.w3_polarity|default:''|yesnoi }}
{{ object|help_text:'w1_voltage'|safe}} {{ object.w1_voltage }} {{ object.w2_voltage|default:'' }} {{ object.w3_voltage|default:'' }}
{{ object|help_text:'w1_earth_fault'|safe}} {{ object.w1_earth_fault }} {{ object.w2_earth_fault|default:'' }} {{ object.w3_earth_fault|default:'' }}

{{ object|help_text:'all_rcds_tested'|safe }}
{{ object.all_rcds_tested|yesnoi }}
{{ object|help_text:'public_sockets_tested'|safe }}
{{ object.public_sockets_tested|yesnoi }}

{% include 'partials/ec_power_info.html' %} {% else %}
{{ object|help_text:'rcds'|safe }}
{{ object.rcds|yesnoi }}
{{ object|help_text:'supply_test'|safe }}
{{ object.supply_test|yesnoi }}
{{ object|help_text:'earthing'|safe }}
{{ object.earthing|yesnoi }}
{{ object|help_text:'pat'|safe }}
{{ object.pat|yesnoi }}
{% endif %}
{% endif %}
{% button 'edit' url='ec_edit' pk=object.pk %} {% button 'view' url='event_detail' pk=object.pk text="Event" %} {% include 'partials/review_status.html' with perm=perms.RIGS.review_eventchecklist review='ec_review' %}
{% include 'partials/last_edited.html' with target="eventchecklist_history" %}
{% endblock %}