diff --git a/smash/web/templates/appointments/index.html b/smash/web/templates/appointments/index.html
index 624a8797f7631e00d8f9c9da5f987490bffe8b8e..0a44243a9216474997aa1b3d404d77cd4375f3b6 100644
--- a/smash/web/templates/appointments/index.html
+++ b/smash/web/templates/appointments/index.html
@@ -143,9 +143,10 @@
 				header: {
 					left: 'prev,next today',
 					center: 'title',
-					right: 'month,agendaWeek'
+					right: 'month,agendaWeek',
 				},
 				editable: false,
+        weekNumbers: true,
 				events: [
         {% for appointment in full_list %}
           {
@@ -154,7 +155,7 @@
             end: '{{ appointment.datetime_until | date:"c" }}',
             color: '{{ appointment.color }}',
             subject_id: '{{ appointment.visit.subject.id }}',
-            id: '{{ appointment.id }}'
+            id: '{{ appointment.id }}',
           },
         {% endfor %}
           ],