new schedule cookie deleted for some pages

This commit is contained in:
Serghei Mihai 2014-03-27 08:47:08 +01:00
parent a35f2170c0
commit 7517a4b7db
1 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ class AgendaHomepageView(TemplateView):
class AgendaServiceActivityView(TemplateView, cbv.ServiceViewMixin):
template_name = 'agenda/service-activity.html'
cookies_to_clear = [('agenda-worker-tabs', ), ('agenda-ressource-tabs', )]
cookies_to_clear = [('agenda-tabs', )]
def get_context_data(self, **kwargs):
context = super(AgendaServiceActivityView, self).get_context_data(**kwargs)
@ -323,7 +323,7 @@ class DeleteEventView(cbv.DeleteView):
class AgendaServiceActValidationView(TemplateView):
template_name = 'agenda/act-validation.html'
cookies_to_clear = [('agenda-worker-tabs', ), ('agenda-ressource-tabs', )]
cookies_to_clear = [('agenda-tabs', )]
def acts_of_the_day(self):
acts = list(Act.objects \
@ -453,7 +453,7 @@ class UnlockAllView(CreateView):
class AgendasTherapeutesView(AgendaHomepageView):
template_name = 'agenda/agendas-therapeutes.html'
cookies_to_clear = [('agenda-worker-tabs', ), ('agenda-ressource-tabs', )]
cookies_to_clear = [('agenda-tabs', )]
def get_context_data(self, **kwargs):
context = super(AgendasTherapeutesView, self).get_context_data(**kwargs)
@ -681,7 +681,7 @@ class AjaxRessourceDisponibilityColumnView(AjaxWorkerDisponibilityColumnView):
class PeriodicEventsView(cbv.ListView):
model = EventWithAct
template_name = 'agenda/periodic-events.html'
cookies_to_clear = [('agenda-worker-tabs', ), ('agenda-ressource-tabs', )]
cookies_to_clear = [('agenda-tabs', )]
def dispatch(self, request, *args, **kwargs):
if 'worker_id' in kwargs: