diff --git a/RIGS/templates/hs/event_checklist_detail.html b/RIGS/templates/hs/event_checklist_detail.html new file mode 100644 index 00000000..98b1c815 --- /dev/null +++ b/RIGS/templates/hs/event_checklist_detail.html @@ -0,0 +1,252 @@ +{% 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.event.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' }}
+
+ {% if object.power_mic %} + {{ object.power_mic.name }} + {% else %} + None + {% endif %} +
+
+

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 %} + + + + + + + {% empty %} + + + + {% endfor %} + +
CrewmemberStart TimeRoleEnd Time
{{crew.crewmember}}{{crew.start}}{{crew.role}}{{crew.end}}
Apparently this event happened by magic...
+
+
+
+
Power {% include 'partials/event_size.html' with object=object.event.riskassessment %}
+
+ {% if object.event.riskassessment.event_size == 0 %} +
+
{{ 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 }} +
+
+ {% else %} +
+
{{ 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

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestValue
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)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestPoint 1Point 2Point 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' %} + {% 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 %} diff --git a/RIGS/templates/hs/event_checklist_form.html b/RIGS/templates/hs/event_checklist_form.html new file mode 100644 index 00000000..6db9f398 --- /dev/null +++ b/RIGS/templates/hs/event_checklist_form.html @@ -0,0 +1,355 @@ +{% extends request.is_ajax|yesno:'base_ajax.html,base_rigs.html' %} +{% load widget_tweaks %} +{% load static %} +{% load help_text from filters %} +{% load profile_by_index from filters %} +{% load button from filters %} + +{% block css %} + {{ block.super }} + +{% endblock %} + +{% block preload_js %} + {{ block.super }} + +{% endblock %} + +{% block js %} + {{ block.super }} + + + + +{% endblock %} + +{% block content %} +
+ {% include 'form_errors.html' %} + {% if edit %} +
+ {% else %} + + {% endif %} + + {% csrf_token %} +
+
+
+
Event Information
+
+
+
Event Date
+
{{ event.start_date}}{%if event.end_date %}-{{ event.end_date}}{%endif%}
+
Event Name
+
{{ event.name }}
+
Client
+
{{ event.person }}
+
Event Size
+
{% include 'partials/event_size.html' with object=event.riskassessment %}
+
+
+ + {% if not form.date.value %} + {% render_field form.date class+="form-control col-8" value=event.start_date %} + {% else %} + {% render_field form.date class+="form-control col-8" %} + {% endif %} +
+
+ + +
+
+ + +
+

List vehicles and their drivers

+
+ + + + + + + + + + + + + + + {% for i in object.vehicles.all %} + + + + + + {% endfor %} + +
VehicleDriver
+ +
+
+
+ +
+
+
+
+
+
+
+
+
Safety Checks
+
+ {% include 'partials/checklist_checkbox.html' with formitem=form.safe_parking %} + {% include 'partials/checklist_checkbox.html' with formitem=form.safe_packing %} + {% include 'partials/checklist_checkbox.html' with formitem=form.exits %} + {% include 'partials/checklist_checkbox.html' with formitem=form.trip_hazard %} + {% include 'partials/checklist_checkbox.html' with formitem=form.warning_signs %} + {% include 'partials/checklist_checkbox.html' with formitem=form.ear_plugs %} +
+ + {% render_field form.hs_location class+="form-control col-7 col-md-4" %} +
+
+ + {% render_field form.extinguishers_location class+="form-control col-7 col-md-4" %} +
+
+
+
+
+
+
+
+
Crew Record
+
+
+ + + + + + + + + + + + + + + + + + + {% for crew in object.crew.all %} + + + + + + + + {% endfor %} + +
PersonStart TimeRoleEnd Time
+ +
+
+
+ +
+
+
+ {% if event.riskassessment.event_size == 0 %} +
+
+
+
Electrical Checks for ‘Small’ TEC Events <6kVA (approx. 26A)
+
+ {% include 'partials/checklist_checkbox.html' with formitem=form.rcds %} + {% include 'partials/checklist_checkbox.html' with formitem=form.supply_test %} + {% include 'partials/checklist_checkbox.html' with formitem=form.earthing %} + {% include 'partials/checklist_checkbox.html' with formitem=form.pat %} +
+
+
+
+ {% else %} +
+
+ {% if event.riskassessment.event_size == 1 %} +
+
Electrical Checks for ‘Medium’ TEC Events
+
+ {% else %} +
+
Electrical Checks for ‘Large’ TEC Events
+
+
Here be dragons. Ensure you have appeased the Power Gods before continuing... (If you didn't check with a Supervisor, you cannot continue your event!)
+ {% endif %} + {% include 'partials/checklist_checkbox.html' with formitem=form.source_rcd %} + {% include 'partials/checklist_checkbox.html' with formitem=form.labelling %} + {% include 'partials/checklist_checkbox.html' with formitem=form.earthing %} + {% include 'partials/checklist_checkbox.html' with formitem=form.pat %} +
+

Tests at first distro

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestValue
Voltage
(cube meter)
{{ form.fd_voltage_l1.help_text }}{{ form.fd_voltage_l2.help_text }}{{ form.fd_voltage_l3.help_text }}
{% render_field form.fd_voltage_l1 class+="form-control" style="min-width: 5rem;" %}{% render_field form.fd_voltage_l2 class+="form-control" style="min-width: 5rem;" %}{% render_field form.fd_voltage_l3 class+="form-control" style="min-width: 5rem;" %}
{{form.fd_phase_rotation.help_text|safe}}{% include 'partials/checklist_checkbox.html' with formitem=form.fd_phase_rotation %}
{{form.fd_earth_fault.help_text|safe}}{% render_field form.fd_earth_fault class+="form-control" %}
{{form.fd_pssc.help_text|safe}}{% render_field form.fd_pssc class+="form-control" %}
+
+
+

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

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestPoint 1Point 2Point 3
{{form.w1_description.help_text|safe}}{% render_field form.w1_description class+="form-control" style="min-width: 5rem;" %}{% render_field form.w2_description class+="form-control" style="min-width: 5rem;" %}{% render_field form.w3_description class+="form-control" style="min-width: 5rem;" %}
{{form.w1_polarity.help_text|safe}}{% render_field form.w1_polarity %}{% render_field form.w2_polarity %}{% render_field form.w3_polarity %}
{{form.w1_voltage.help_text|safe}}{% render_field form.w1_voltage class+="form-control" %}{% render_field form.w2_voltage class+="form-control" %}{% render_field form.w3_voltage class+="form-control" %}
{{form.w1_earth_fault.help_text|safe}}{% render_field form.w1_earth_fault class+="form-control" %}{% render_field form.w2_earth_fault class+="form-control" %}{% render_field form.w3_earth_fault class+="form-control" %}
+
+
+ {% include 'partials/checklist_checkbox.html' with formitem=form.all_rcds_tested %} + {% include 'partials/checklist_checkbox.html' with formitem=form.public_sockets_tested %} + {% include 'partials/ec_power_info.html' %} +
+
+
+
+ {% endif %} +
+
+ {% button 'submit' %} +
+
+ +
+{% endblock %} diff --git a/RIGS/templates/hs/hs_list.html b/RIGS/templates/hs/hs_list.html new file mode 100644 index 00000000..221eecd2 --- /dev/null +++ b/RIGS/templates/hs/hs_list.html @@ -0,0 +1,52 @@ +{% extends 'base_rigs.html' %} +{% load paginator from filters %} +{% load button from filters %} + +{% block content %} +
+ + + + + + + + + + + + {% for event in object_list %} + + + + + + + + + {% empty %} + + + + {% endfor %} + +
EventMICDatesRAChecklists
{{ event }}
{{ event.get_status_display }}
{% if event.mic is not None %}{% else %}{% endif %}{{ event.mic }}{% if event.mic is not None %}{% else %}{%endif%} + {{ event.start_date|date:"D d/m/Y" }} + {% if event.end_date and event.end_date != event.start_date %} +
{{ event.end_date|date:"D d/m/Y" }} + {% endif %} +
{% include 'partials/hs_status.html' with event=event object=event.riskassessment view='ra_detail' edit='ra_edit' create='event_ra' review='ra_review' perm=perms.RIGS.review_riskassessment %} + {% for checklist in event.checklists.all %} + {% include 'partials/hs_status.html' with event=event object=checklist view='ec_detail' edit='ec_edit' create='event_ec' review='ec_review' perm=perms.RIGS.review_eventchecklist %} +
+ {% endfor %} + Create +
No events found
+ {% if is_paginated %} +
+ {% paginator %} +
+ {% endif %} +
+{% endblock %} diff --git a/RIGS/templates/hs/hs_object_list.html b/RIGS/templates/hs/hs_object_list.html new file mode 100644 index 00000000..c3ebaf4d --- /dev/null +++ b/RIGS/templates/hs/hs_object_list.html @@ -0,0 +1,59 @@ +{% extends 'base_rigs.html' %} +{% load paginator from filters %} +{% load help_text from filters %} +{% load verbose_name from filters %} +{% load get_field from filters %} + +{% block title %}{{ title }} List{% endblock %} + +{% block content %} +
+
+

{{title}} List

+
+
+
+
+
+ + + + + {# mmm hax #} + {% if object_list.0 != None %} + {% for field in object_list.0.fieldz %} + + {% endfor %} + {% endif %} + + + + + {% for object in object_list %} + + {# General #} + + {% for field in object_list.0.fieldz %} + + {% endfor %} + {# Buttons #} + + + {% empty %} + + + + {% endfor %} + +
Event{{ object_list.0|verbose_name:field|title }}
{{ object.event }}
{{ object.event.get_status_display }}
{{ object|get_field:field }} + {% include 'partials/hs_status.html' %} +
Nothing found
+
+
+
+ {% if is_paginated %} +
+ {% paginator %} +
+ {% endif %} +{% endblock %} diff --git a/RIGS/templates/hs/ra_print.xml b/RIGS/templates/hs/ra_print.xml new file mode 100644 index 00000000..4dabd8d3 --- /dev/null +++ b/RIGS/templates/hs/ra_print.xml @@ -0,0 +1,135 @@ +{% extends 'base_print.xml' %} +{% load filters %} + +{% block content %} + +

Event Specific Risk Assessment for {{ object.event }}

+ +

Client: {{ object.event.person|default:object.event.organisation }} | Venue: {{ object.event.venue }} | MIC: {{ object.event.mic }}

+ +
+ + +

General

+ + + {{ object|help_text:'nonstandard_equipment'|striptags }} + {{ object.nonstandard_equipment|yesno|capfirst }} + + + {{ object|help_text:'nonstandard_use'|striptags }} + {{ object.nonstandard_use|yesno|capfirst }} + + + {{ object|help_text:'contractors'|striptags }} + {{ object.contractors|yesno|capfirst }} + + + {{ object|help_text:'other_companies'|striptags }} + {{ object.other_companies|yesno|capfirst }} + + + {{ object|help_text:'crew_fatigue'|striptags }} + {{ object.crew_fatigue|yesno|capfirst }} + + + {{ object|help_text:'general_notes'|striptags }} + {{ object.general_notes|default:'No' }} + + +

Power

{{ object.get_event_size_display }} + + + {{ object|help_text:'big_power'|striptags }} + {{ object.big_power|yesno|capfirst }} + + + {{ object|help_text:'power_mic'|striptags }} + {{ object.power_mic|default:object.event.mic }} + + + {{ object|help_text:'outside'|striptags }} + {{ object.outside|yesno|capfirst }} + + + {{ object|help_text:'generators'|striptags }} + {{ object.generators|yesno|capfirst }} + + + {{ object|help_text:'other_companies_power'|striptags }} + {{ object.other_companies_power|yesno|capfirst }} + + + {{ object|help_text:'nonstandard_equipment_power'|striptags }} + {{ object.nonstandard_equipment_power|yesno|capfirst }} + + + {{ object|help_text:'multiple_electrical_environments'|striptags }} + {{ object.multiple_electrical_environments|yesno|capfirst }} + + + {{ object|help_text:'power_notes'|striptags }} + {{ object.power_notes|default:'No' }} + + +

Sound

+ + + {{ object|help_text:'noise_monitoring'|striptags }} + {{ object.noise_monitoring|yesno|capfirst }} + + + {{ object|help_text:'sound_notes'|striptags }} + {{ object.sound_notes|default:'No' }} + + +

Site Details

+ + + {{ object|help_text:'known_venue'|striptags }} + {{ object.known_venue|yesno|capfirst }} + + + {{ object|help_text:'safe_loading'|striptags }} + {{ object.safe_loading|yesno|capfirst }} + + + {{ object|help_text:'safe_storage'|striptags }} + {{ object.safe_storage|yesno|capfirst }} + + + {{ object|help_text:'area_outside_of_control'|striptags }} + {{ object.area_outside_of_control|yesno|capfirst }} + + + {{ object|help_text:'barrier_required'|striptags }} + {{ object.barrier_required|yesno|capfirst }} + + + {{ object|help_text:'nonstandard_emergency_procedure'|striptags }} + {{ object.nonstandard_emergency_procedure|yesno|capfirst }} + + +

Structures

+ + + {{ object|help_text:'special_structures'|striptags }} + {{ object.special_structures|yesno|capfirst }} + + + {{ object|help_text:'suspended_structures'|striptags }} + {{ object.suspended_structures|yesno|capfirst }} + + + {{ object|help_text:'persons_responsible_structures'|striptags }} + {{ object.persons_responsible_structures|default:'N/A' }} + +
+\ +
+ +Assessment completed by {{ object.last_edited_by }} on {{ object.last_edited_at }} +{% if object.reviewed_by %} +Reviewed by {{ object.reviewed_by }} on {{ object.reviewed.at }} +{% endif %} +{% endblock %} diff --git a/RIGS/templates/hs/risk_assessment_detail.html b/RIGS/templates/hs/risk_assessment_detail.html new file mode 100644 index 00000000..56898159 --- /dev/null +++ b/RIGS/templates/hs/risk_assessment_detail.html @@ -0,0 +1,166 @@ +{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} +{% load filters %} + +{% block content %} +
+
+
+
General
+
+
+
{{ object|help_text:'nonstandard_equipment'|safe }}
+
+ {{ object.nonstandard_equipment|yesnoi:'invert' }} +
+
{{ object|help_text:'nonstandard_use'|safe }}
+
+ {{ object.nonstandard_use|yesnoi:'invert' }} +
+
{{ object|help_text:'contractors'|safe }}
+
+ {{ object.contractors|yesnoi:'invert' }} +
+
{{ object|help_text:'other_companies'|safe }}
+
+ {{ object.other_companies|yesnoi:'invert' }} +
+
{{ object|help_text:'crew_fatigue' }}
+
+ {{ object.crew_fatigue|yesnoi:'invert' }} +
+
{{ object|help_text:'general_notes' }}
+
+ {{ object.general_notes|default:'N/A'|linebreaks }} +
+
+
+
+
+
Power {% include 'partials/event_size.html' %}
+
+
+
{{ object|help_text:'big_power' }}
+
+ {{ object.big_power|yesnoi:'invert' }} +
+
{{ object|help_text:'power_mic'|safe }}
+
+ {{ object.power_mic.name|default:object.event.mic }} +
+
{{ object|help_text:'outside' }}
+
+ {{ object.outside|yesnoi:'invert' }} +
+
{{ object|help_text:'generators' }}
+
+ {{ object.generators|yesnoi:'invert' }} +
+
{{ object|help_text:'other_companies_power' }}
+
+ {{ object.other_companies_power|yesnoi:'invert' }} +
+
{{ object|help_text:'nonstandard_equipment_power' }}
+
+ {{ object.nonstandard_equipment_power|yesnoi:'invert' }} +
+
{{ object|help_text:'multiple_electrical_environments' }}
+
+ {{ object.multiple_electrical_environments|yesnoi:'invert' }} +
+
{{ object|help_text:'power_notes' }}
+
+ {{ object.power_notes|default:'N/A'|linebreaks }} +
+
{{ object|help_text:'power_plan'|safe }}
+
+ {{ object.power_plan|linkornone }} +
+
+
+
+
+
Sound
+
+
+
{{ object|help_text:'noise_monitoring' }}
+
+ {{ object.noise_monitoring|yesnoi:'invert' }} +
+
{{ object|help_text:'sound_notes' }}
+
+ {{ object.sound_notes|default:'N/A'|linebreaks }} +
+
+
+
+
+
+
+
Site Details
+
+
+
{{ object|help_text:'known_venue' }}
+
+ {{ object.known_venue|yesnoi:'invert' }} +
+
{{ object|help_text:'safe_loading'|safe }}
+
+ {{ object.safe_loading|yesnoi:'invert' }} +
+
{{ object|help_text:'safe_storage' }}
+
+ {{ object.safe_storage|yesnoi:'invert' }} +
+
{{ object|help_text:'area_outside_of_control' }}
+
+ {{ object.area_outside_of_control|yesnoi:'invert' }} +
+
{{ object|help_text:'barrier_required' }}
+
+ {{ object.barrier_required|yesnoi:'invert' }} +
+
{{ object|help_text:'nonstandard_emergency_procedure' }}
+
+ {{ object.nonstandard_emergency_procedure|yesnoi:'invert' }} +
+
+
+
+
+
+
+
Structures
+
+
+
{{ object|help_text:'special_structures' }}
+
+ {{ object.special_structures|yesnoi:'invert' }} +
+
{{ object|help_text:'suspended_structures' }}
+
+ {{ object.suspended_structures|yesnoi:'invert' }} +
+
{{ object|help_text:'persons_responsible_structures' }}
+
+ {{ object.persons_responsible_structures.name|default:'N/A'|linebreaks }} +
+
{{ object|help_text:'rigging_plan'|safe }}
+
+ {{ object.rigging_plan|linkornone|default:'N/A' }} +
+
+
+
+
+
+
+
+ {% button 'print' 'ra_print' object.pk %} + Edit + View Event + {{ object.review_string|safe }} + {% include 'partials/last_edited.html' with target="riskassessment_history" %} +
+
+{% endblock %} diff --git a/RIGS/templates/hs/risk_assessment_form.html b/RIGS/templates/hs/risk_assessment_form.html new file mode 100644 index 00000000..28184cd3 --- /dev/null +++ b/RIGS/templates/hs/risk_assessment_form.html @@ -0,0 +1,176 @@ +{% extends request.is_ajax|yesno:'base_ajax.html,base_rigs.html' %} +{% load widget_tweaks %} +{% load static %} +{% load help_text from filters %} +{% load nice_errors from filters %} + +{% block css %} + +{% endblock %} + +{% block preload_js %} + +{% endblock %} + +{% block js %} + + + + +{% endblock %} + +{% block content %} +
+ {% if form.errors %} +
+ +
+ {% with form|nice_errors as qq %} + {% for error_name,desc in qq.items %} + {% if error_name == 'General form errors' %} + {{ form.non_field_errors.0|safe }} +
+ {% render_field form.supervisor_consulted class+="form-check-input" form="form" %}
+ +
+ {% else %} + +
{{error_name}}
+
{{desc}}
+
+ {% endif %} + {% endfor %} + {% endwith %} +
+
+ {% endif %} + {% if edit %} +
+ {% else %} + + {% endif %} + + {% csrf_token %} +
+
+
+
General
+
+

If the answer is yes to any of the below, you must consult a supervisor and make sure all activities planned to be undertaken are sufficiently covered by health and safety documentation

+ {% include 'partials/yes_no_radio.html' with formitem=form.nonstandard_equipment %} + {% include 'partials/yes_no_radio.html' with formitem=form.nonstandard_use %} + {% include 'partials/yes_no_radio.html' with formitem=form.contractors %} + {% include 'partials/yes_no_radio.html' with formitem=form.other_companies %} + {% include 'partials/yes_no_radio.html' with formitem=form.crew_fatigue %} + + + {% render_field form.general_notes class+="form-control" %} +
+
+
+
+
+
+
+
Power
+
+ {% include 'partials/yes_no_radio.html' with formitem=form.big_power %} + +
+ +
+

If the answer is yes to ANY of the below questions this is a Large Event and you must consult a power supervisor

+ {% include 'partials/yes_no_radio.html' with formitem=form.outside %} + {% include 'partials/yes_no_radio.html' with formitem=form.generators label="Will generators be used?" %} + {% include 'partials/yes_no_radio.html' with formitem=form.other_companies_power %} + {% include 'partials/yes_no_radio.html' with formitem=form.nonstandard_equipment_power %} + {% include 'partials/yes_no_radio.html' with formitem=form.multiple_electrical_environments %} + + {% render_field form.power_notes class+="form-control" %} + + {% render_field form.power_plan class+="form-control" %} +
+
+
+
+
+
+
+
Sound
+
+

If yes, consult a supervisor of sound

+ {% include 'partials/yes_no_radio.html' with formitem=form.noise_monitoring %} + + {% render_field form.sound_notes class+="form-control" %} +
+
+
+
+
+
+
+
Site Details
+
+

If yes to any of the below, a site visit must be conducted, and an assessment of the venue completed and added to TEC’s records

+ {% include 'partials/yes_no_radio.html' with formitem=form.known_venue %} + {% include 'partials/yes_no_radio.html' with formitem=form.safe_loading %} + {% include 'partials/yes_no_radio.html' with formitem=form.safe_storage %} + {% include 'partials/yes_no_radio.html' with formitem=form.area_outside_of_control %} + {% include 'partials/yes_no_radio.html' with formitem=form.barrier_required %} + {% include 'partials/yes_no_radio.html' with formitem=form.nonstandard_emergency_procedure %} +
+
+
+
+
+
+
+
Structures
+
+ {% include 'partials/yes_no_radio.html' with formitem=form.special_structures %} + + {% render_field form.persons_responsible_structures class+="form-control mb-3" hidden="true" %} + {% include 'partials/yes_no_radio.html' with formitem=form.suspended_structures %} + + {% render_field form.rigging_plan class+="form-control" hidden="true" %} +
+
+
+
+
+
+
+ +
+
+
+
+
+{% endblock %}