diff --git a/RIGS/templates/hs/power_print.xml b/RIGS/templates/hs/power_print.xml index 1595f470..7e6ec616 100644 --- a/RIGS/templates/hs/power_print.xml +++ b/RIGS/templates/hs/power_print.xml @@ -2,8 +2,13 @@ {% load filters %} {% block extrastyles %} - - + + + + + + + @@ -12,6 +17,10 @@ + + + + {% endblock %} {% block content %} @@ -34,6 +43,16 @@

Power Plan Information

+{% if object.event.riskassessment.event_size == 0 %} + Small Event +{% elif object.event.riskassessment.event_size == 1 %} + Medium Event +{% elif object.event.riskassessment.event_size == 2 %} + Large Event +{% endif %} + + + Power MIC: {{ object.power_mic }} @@ -54,35 +73,56 @@
- - -

Power Test Results

- - -Source RCD protected? {{ object.source_rcd|yesno|capfirst }} -(If cable is more than 3 metres long) +{% comment %} +0 - Small event +1 - Medium event (extra power records) +2 - Large event (extra power records) +{% endcomment %} - +{% if object.event.riskassessment.event_size >= 1 %} -Appropriate and clear labelling on distribution and cabling? {{ object.labelling|yesno|capfirst }} +Power Test results enclosed on next page - - -Equipment appropriately earthed? {{ object.source_rcd|yesno|capfirst }} -(truss, stage, generators etc.) + - +

Event Power Checklist

+ -All equipment in PAT period? {{ object.pat|yesno|capfirst }} + + + All circuit RCDs tested?(using test button) + {{ object.all_rcds_tested|yesno|capfirst }} + + + Public/performer accessible circuits tested?(using socket tester) + {{ object.public_sockets_tested|yesno|capfirst }} + + + Source RCD protected?(if cable is more than 3m long) + {{ object.source_rcd|yesno|capfirst }} + + + Appropriate and clear labelling on distribution and cabling? + {{ object.labelling|yesno|capfirst }} + + + Equipment appropriately earthed?(truss, stage, generators, etc.) + {{ object.earthing|yesno|capfirst }} + + + All equipment in PAT period?

+ {{ object.pat|yesno|capfirst }} + +
-

Tests at first distro

+

Power tests (First Distro)

- + -Voltage
(cube meter) / V
+Voltage(cube meter) / V @@ -100,11 +140,11 @@ - + - + - Phase Rotation
(if required)
+ Phase Rotation(if required) {{ object.fd_phase_rotation|yesno|capfirst }} Earth Fault Loop Impedance (Zs) / Ω {{ object.fd_earth_fault }} @@ -113,11 +153,11 @@ -Prospective Short Circuit Current / A {{ object.fd_pssc }} +Prospective Short Circuit Current (PSCC) {{ object.fd_pssc }} A -

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

+

Power Tests (Worst Case Points)

@@ -153,18 +193,33 @@ {% endif %} - -

Generic Tests

+{% else %} + +{% comment %} +Small power test +{% endcomment %} + +

Power Checklist

- All circuit RCDs tested?
(using test button)
- {{ object.all_rcds_tested|yesno|capfirst }} + RCDs installed where needed and tested?

+ {{ object.rcds|yesno|capfirst }} - Public/performer accessible circuits tested?
(using socket tester)
- {{ object.public_sockets_tested|yesno|capfirst }} + Electrical supplies tested?

+ {{ object.supply_test|yesno|capfirst }} + + + Equipment appropriately earthed?(truss, stage, generators, etc.) + {{ object.earthing|yesno|capfirst }} + + + All equipment in PAT period?

+ {{ object.pat|yesno|capfirst }}
+{% endif %} + {% endblock %}