Skip to content

Commit

Permalink
Merge pull request #1085 from rcpch/mbarton/1-6
Browse files Browse the repository at this point in the history
Question 1.6
  • Loading branch information
mbarton authored Oct 16, 2024
2 parents 5f6acc8 + b7014f3 commit f82aad3
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
7 changes: 7 additions & 0 deletions epilepsy12/forms_folder/organisational_audit_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ class Meta:
"reference": "For example in nurse, doctor or allied professionals job plans"
},

"S01LeadershipHours": {
"section": "1. Workforce",
"question_number": "1.6",
"label": "What is the total number of hours per week for your Health Board/Trust specified towards local epilepsy service leadership?",
"reference": "For example in nurse, doctor or allied professionals job plans"
},


# 2. Epilepsy Clinic configuration

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 5.1 on 2024-10-16 13:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
(
"epilepsy12",
"0038_historicalorganisationalauditsubmission_submitted_and_more",
),
]

operations = [
migrations.AddField(
model_name="historicalorganisationalauditsubmission",
name="S01LeadershipHours",
field=models.PositiveIntegerField(blank=True, null=True),
),
migrations.AddField(
model_name="organisationalauditsubmission",
name="S01LeadershipHours",
field=models.PositiveIntegerField(blank=True, null=True),
),
]
3 changes: 3 additions & 0 deletions epilepsy12/models_folder/organisational_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ def __str__(self) -> str:
# New! https://github.com/rcpch/rcpch-audit-engine/issues/876#issuecomment-2312271287
S01JobPlannedHoursPerWeekLeadershipQIActivities = PositiveIntegerField() # 1.5

# New! https://github.com/rcpch/rcpch-audit-engine/issues/1082
S01LeadershipHours = PositiveIntegerField() # 1.6


# 2. Epilepsy Clinic configuration

Expand Down

0 comments on commit f82aad3

Please sign in to comment.