From 59810651abf4f9b7f920ae93c17d8aebe3596a2a Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 28 Nov 2014 13:01:23 +0100 Subject: [PATCH] bugfix --- telemeta/views/collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telemeta/views/collection.py b/telemeta/views/collection.py index eac26610..3a54ed37 100644 --- a/telemeta/views/collection.py +++ b/telemeta/views/collection.py @@ -316,7 +316,7 @@ class CollectionEditView(CollectionViewMixin, UpdateWithInlinesView): return reverse_lazy('telemeta-collection-detail', kwargs={'public_id':self.kwargs['public_id']}) def get_context_data(self, **kwargs): - context = super(CollectionCopyView, self).get_context_data(**kwargs) + context = super(CollectionEditView, self).get_context_data(**kwargs) collection = self.get_object() context['collection'] = collection return context -- 2.39.5