diff --git a/RIGS/migrations/0045_auto_20201116_1808.py b/RIGS/migrations/0045_auto_20201116_1808.py
new file mode 100644
index 00000000..52d243e1
--- /dev/null
+++ b/RIGS/migrations/0045_auto_20201116_1808.py
@@ -0,0 +1,34 @@
+# Generated by Django 3.1.2 on 2020-11-16 18:08
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('RIGS', '0044_auto_20201024_2031'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='riskassessment',
+ name='outside',
+ field=models.BooleanField(default=False, help_text='Is the event outdoors?'),
+ preserve_default=False,
+ ),
+ migrations.AlterField(
+ model_name='riskassessment',
+ name='contractors',
+ field=models.BooleanField(help_text='Are you using any external contractors?i.e. Freelancers/Crewing Companies'),
+ ),
+ migrations.AlterField(
+ model_name='riskassessment',
+ name='nonstandard_equipment',
+ field=models.BooleanField(help_text="Does the event require any hired in equipment or use of equipment that is not covered by TEC's standard risk assessments and method statements?"),
+ ),
+ migrations.AlterField(
+ model_name='riskassessment',
+ name='other_companies',
+ field=models.BooleanField(help_text='Are TEC working with any other companies on site?e.g. TEC is providing the lighting while another company does sound'),
+ ),
+ ]
diff --git a/RIGS/models.py b/RIGS/models.py
index c5d61d02..26ae9ea6 100644
--- a/RIGS/models.py
+++ b/RIGS/models.py
@@ -614,15 +614,17 @@ class Payment(models.Model, RevisionMixin):
class RiskAssessment(models.Model, RevisionMixin):
event = models.OneToOneField('Event', on_delete=models.CASCADE)
# General
- nonstandard_equipment = models.BooleanField(help_text="Does the event require any hired in equipment or use of equipment that is not covered by TEC's standard risk assessments and method statements?")
+ nonstandard_equipment = models.BooleanField(help_text="Does the event require any hired in equipment or use of equipment that is not covered by TEC's standard risk assessments and method statements?")
nonstandard_use = models.BooleanField(help_text="Are TEC using their equipment in a way that is abnormal?
i.e. Not covered by TECs standard health and safety documentation")
- contractors = models.BooleanField(help_text="Are you using any external contractors?")
- other_companies = models.BooleanField(help_text="Are TEC working with any other companies on site?")
+ contractors = models.BooleanField(help_text="Are you using any external contractors?i.e. Freelancers/Crewing Companies")
+ other_companies = models.BooleanField(help_text="Are TEC working with any other companies on site?e.g. TEC is providing the lighting while another company does sound")
crew_fatigue = models.BooleanField(help_text="Is crew fatigue likely to be a risk at any point during this event?")
general_notes = models.TextField(blank=True, null=True, help_text="Did you have to consult a supervisor about any of the above? If so who did you consult and what was the outcome?")
# Power
big_power = models.BooleanField(help_text="Does the event require larger power supplies than 13A or 16A single phase wall sockets, or draw more than 20A total current?")
+ outside = models.BooleanField(help_text="Is the event outdoors?")
+ # If yes to the above two, you must answer...
power_mic = models.ForeignKey(settings.AUTH_USER_MODEL, related_name='power_mic', blank=True, null=True,
verbose_name="Power MIC", on_delete=models.CASCADE, help_text="Who is the Power MIC?")
generators = models.BooleanField(help_text="Will generators be used?")
@@ -645,8 +647,8 @@ class RiskAssessment(models.Model, RevisionMixin):
# Structures
special_structures = models.BooleanField(help_text="Does the event require use of winch stands, motors, MPT Towers, or staging?")
- persons_responsible_structures = models.TextField(blank=True, null=True, help_text="Who are the persons on site responsible for their use?")
suspended_structures = models.BooleanField(help_text="Are any structures (excluding projector screens and IWBs) being suspended from TEC's structures?")
+ persons_responsible_structures = models.TextField(blank=True, null=True, help_text="Who are the persons on site responsible for their use?")
# Blimey that was a lot of options
diff --git a/RIGS/templates/partials/ec_power_info.html b/RIGS/templates/partials/ec_power_info.html
index 1c57734a..aaf4543d 100644
--- a/RIGS/templates/partials/ec_power_info.html
+++ b/RIGS/templates/partials/ec_power_info.html
@@ -1,4 +1,4 @@
-