diff --git a/smash/web/views/worker.py b/smash/web/views/worker.py
index 6e7077c0a4451aaad6f4c8c8469ea43f0e3e3c7c..f5081609c4342c31de19d419651de2d84de034a8 100644
--- a/smash/web/views/worker.py
+++ b/smash/web/views/worker.py
@@ -6,7 +6,7 @@ from django.shortcuts import redirect, get_object_or_404
 from web.forms import AvailabilityAddForm, AvailabilityEditForm, HolidayAddForm
 from web.forms import WorkerForm
 from web.models import Worker, Availability, Holiday
-from web.models.constants import WEEKDAY_CHOICES, GLOBAL_STUDY_ID
+from web.models.constants import WEEKDAY_CHOICES, GLOBAL_STUDY_ID, AVAILABILITY_CHOICES
 from web.models.worker import worker_type_by_worker
 from web.models.worker_study_role import WORKER_STAFF
 from . import wrap_response
@@ -55,6 +55,7 @@ def worker_edit(request, worker_id):
                              'holidays': holidays,
                              'doctor_id': worker_id,
                              'weekdays': WEEKDAY_CHOICES,
+                             'availability_choices': AVAILABILITY_CHOICES,
                              "worker_type": worker_type
                          })