diff --git a/RIGS/templates/hs/power_print.xml b/RIGS/templates/hs/power_print.xml
new file mode 100644
index 00000000..1595f470
--- /dev/null
+++ b/RIGS/templates/hs/power_print.xml
@@ -0,0 +1,170 @@
+{% extends 'base_print.xml' %}
+{% load filters %}
+
+{% block extrastyles %}
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+{% block content %}
+
+
+
+ | Description |
+ Polarity checked? |
+ Voltage / V |
+ Earth Fault Loop Impedance (Zs) / Ω |
+
+ {% if object.w1_description %}
+
+ | {{ object.w1_description }} |
+ {{ object.w1_polarity|yesno|capfirst }} |
+ {{ object.w1_voltage }} V |
+ {{ object.w1_earth_fault }} |
+
+ {% endif %}
+ {% if object.w2_description %}
+
+ | {{ object.w2_description }} |
+ {{ object.w2_polarity|yesno|capfirst }} |
+ {{ object.w2_voltage }} V |
+ {{ object.w2_earth_fault }} |
+
+ {% endif %}
+ {% if object.w3_description %}
+
+ | {{ object.w3_description }} |
+ {{ object.w3_polarity|yesno|capfirst }} |
+ {{ object.w3_voltage }} V |
+ {{ object.w3_earth_fault }} |
+
+ {% endif %}
+
+
+