diff --git a/djangorota/djangorota/templates/rota/partials/worker_list.html b/djangorota/djangorota/templates/rota/partials/worker_list.html
index 4339b7a..7b0e979 100644
--- a/djangorota/djangorota/templates/rota/partials/worker_list.html
+++ b/djangorota/djangorota/templates/rota/partials/worker_list.html
@@ -4,9 +4,23 @@
{% for w in rota.workers.all %}
-
- {{ w.name }}
-
-
+
+
+
{{ w.name }}
+
— {{ w.site }}{% if w.grade %} · grade {{ w.grade }}{% endif %} · FTE {{ w.fte }}
+ {# show non-working days stored in options.nwds if present; render JSON safely and let JS format it #}
+ {% if w.options.nwds %}
+
+ {% with script_id='nwds-data-'|add:w.id %}
+ {{ w.options.nwds|default:"[]"|json_script:script_id }}
+ {% endwith %}
+ {% endif %}
+
+
+
+
+
+
{% empty %}
- No workers assigned
@@ -14,3 +28,69 @@
+
+