Initially create subhire model and form

This commit is contained in:
2022-10-15 19:09:51 +01:00
parent e7e760de2e
commit 8b0cd13159
6 changed files with 307 additions and 72 deletions

View File

@@ -70,6 +70,9 @@ urlpatterns = [
path('event/<int:pk>/duplicate/', permission_required_with_403('RIGS.add_event')(views.EventDuplicate.as_view()),
name='event_duplicate'),
path('subhire/create/', permission_required_with_403('RIGS.add_event')(views.SubhireCreate.as_view()),
name='subhire_create'),
# Event H&S
path('event/hs/', permission_required_with_403('RIGS.view_riskassessment')(views.HSList.as_view()), name='hs_list'),