You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add fields to rig info for additional access requirements (#611)
* Add fields to rig info for additional access requirements
* Add form field for additional access requirements
* Display access requirements in rig info
* Make access requirements field non-required
Oops...
* Add event access field to risk assessment
* Allow for modification and display risk assessment venue access item
* Correct tests for RAs with new parking fields
* Add note to new venue access component of RA
* Correct div boundaries for non-rig access requirements
* Fill parking and access field in sample data generator
* Set parking and access field to false in RA creation test
* Hopefully the final correction of the RA test suite
field=models.BooleanField(default=False, help_text='Are there additional requirements for parking and access to the venue? (i.e. campus parking permits, event access wristbands)'),
@@ -779,6 +782,9 @@ class RiskAssessment(ReviewableModel, RevisionMixin):
779
782
persons_responsible_structures=models.TextField(blank=True, default='', help_text="Who are the persons on site responsible for their use?")
780
783
rigging_plan=models.URLField(blank=True, default='', help_text="Upload your rigging plan to the <a href='https://nottinghamtec.sharepoint.com/'>Sharepoint</a> and submit a link", validators=[validate_url])
781
784
785
+
# Venue Access
786
+
parking_and_access=models.BooleanField(help_text="Are there additional requirements for parking and access to the venue? (i.e. campus parking permits, event access wristbands)")
Copy file name to clipboardExpand all lines: RIGS/templates/hs/risk_assessment_form.html
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -162,6 +162,17 @@
162
162
</div>
163
163
</div>
164
164
</div>
165
+
<divclass="row my-3">
166
+
<divclass="col-12">
167
+
<divclass="card">
168
+
<divclass="card-header">Venue Access</div>
169
+
<divclass="card-body">
170
+
<p><strong>If yes to the below, ensure you have communicated with the client and secured all necessary access prior to the event commencing.</strong></p>
171
+
{% include 'partials/yes_no_radio.html' with formitem=form.parking_and_access %}
0 commit comments