From 2d6ba14afa385adcb04876515ee3cd9870843b4f Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Mon, 22 Sep 2014 15:00:35 +0200 Subject: [PATCH] agenda: current service arrivals/departures displayed in worker's schedule --- calebasse/agenda/appointments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calebasse/agenda/appointments.py b/calebasse/agenda/appointments.py index fe4e355b..d8f1f854 100644 --- a/calebasse/agenda/appointments.py +++ b/calebasse/agenda/appointments.py @@ -207,7 +207,7 @@ def get_daily_appointments(date, worker, service, time_tables, events, holidays) services = time_table.services.all() common_service = service in services - services = [s.slug for s in services if s != service] + services = [s.slug for s in services] appointment_kind = 'timetable ' if common_service: appointment_kind += 'info'