diff --git a/base/forms.py b/base/forms.py
index dd473c101..368db58d4 100644
--- a/base/forms.py
+++ b/base/forms.py
@@ -578,7 +578,8 @@ class JobRoleForm(ModelForm):
super().__init__(*args, **kwargs)
if not self.instance.pk:
self.fields["job_position_id"] = forms.ModelMultipleChoiceField(
- queryset=self.fields["job_position_id"].queryset
+ queryset=self.fields["job_position_id"].queryset,
+ label=JobRole._meta.get_field("job_position_id").verbose_name,
)
attrs = self.fields["job_position_id"].widget.attrs
attrs["class"] = "oh-select oh-select2 w-100"
diff --git a/base/templates/base/employee_type/employee_type_form.html b/base/templates/base/employee_type/employee_type_form.html
index 019dbeb48..68ad294c4 100644
--- a/base/templates/base/employee_type/employee_type_form.html
+++ b/base/templates/base/employee_type/employee_type_form.html
@@ -1,37 +1,22 @@
{% load i18n %}
-
+
diff --git a/base/templates/base/job_role/job_role_form.html b/base/templates/base/job_role/job_role_form.html
index b85f929a1..08c6db7d0 100644
--- a/base/templates/base/job_role/job_role_form.html
+++ b/base/templates/base/job_role/job_role_form.html
@@ -1,46 +1,31 @@
{% load i18n %}
diff --git a/base/templates/base/rotating_shift/htmx/rotating_shift_form.html b/base/templates/base/rotating_shift/htmx/rotating_shift_form.html
index 0a72aa52e..ce22b27ee 100644
--- a/base/templates/base/rotating_shift/htmx/rotating_shift_form.html
+++ b/base/templates/base/rotating_shift/htmx/rotating_shift_form.html
@@ -1,34 +1,22 @@
{% load i18n %}
-
+
diff --git a/base/templates/base/rotating_work_type/htmx/rotating_work_type_form.html b/base/templates/base/rotating_work_type/htmx/rotating_work_type_form.html
index 9bf033ddc..d1f16eeca 100644
--- a/base/templates/base/rotating_work_type/htmx/rotating_work_type_form.html
+++ b/base/templates/base/rotating_work_type/htmx/rotating_work_type_form.html
@@ -1,32 +1,21 @@
{% load i18n %}
-
+
diff --git a/base/templates/base/shift/schedule_form.html b/base/templates/base/shift/schedule_form.html
index 54ea52427..5a8b8fff0 100644
--- a/base/templates/base/shift/schedule_form.html
+++ b/base/templates/base/shift/schedule_form.html
@@ -1,26 +1,21 @@
{% load i18n %}
-
diff --git a/base/templates/base/shift/shift_form.html b/base/templates/base/shift/shift_form.html
index b84f9fb23..bfdb32257 100644
--- a/base/templates/base/shift/shift_form.html
+++ b/base/templates/base/shift/shift_form.html
@@ -1,37 +1,22 @@
{% load i18n %}
-
+
diff --git a/base/templates/base/work_type/work_type_form.html b/base/templates/base/work_type/work_type_form.html
index f3e65e8ee..5d744be82 100644
--- a/base/templates/base/work_type/work_type_form.html
+++ b/base/templates/base/work_type/work_type_form.html
@@ -1,37 +1,21 @@
{% load i18n %}
-
+
diff --git a/base/templates/shift_request/htmx/shift_request_create_form.html b/base/templates/shift_request/htmx/shift_request_create_form.html
index 76139df98..053bf65f6 100644
--- a/base/templates/shift_request/htmx/shift_request_create_form.html
+++ b/base/templates/shift_request/htmx/shift_request_create_form.html
@@ -1,7 +1,7 @@
{% load i18n %} {% load static %}
-
-
diff --git a/base/views.py b/base/views.py
index 76d9bd770..1a8d36c84 100644
--- a/base/views.py
+++ b/base/views.py
@@ -3877,7 +3877,7 @@ def work_type_request_update(request, work_type_request_id):
if request.method == "POST":
response = render(
request,
- "work_type_request/request_update_form.html",
+ "work_type_request/request_form.html",
{
"form": form,
},
@@ -3892,7 +3892,7 @@ def work_type_request_update(request, work_type_request_id):
response.content.decode("utf-8") + ""
)
- return render(request, "work_type_request/request_update_form.html", {"form": form})
+ return render(request, "work_type_request/request_form.html", {"form": form})
@login_required