diff --git a/conservancy/blog/views.py b/conservancy/blog/views.py index 1b318d009ad0d687c9fad137ff0aa38a5c130528..ae14a0e8293214554d724404369ed43c40af3490 100644 --- a/conservancy/blog/views.py +++ b/conservancy/blog/views.py @@ -123,7 +123,7 @@ class BlogYearArchiveView(YearArchiveView): make_object_list = True allow_future = True extra_context = {} - + def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context.update(self.extra_context) @@ -132,7 +132,7 @@ class BlogYearArchiveView(YearArchiveView): class BlogMonthArchiveView(MonthArchiveView): allow_future = True extra_context = {} - + def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context.update(self.extra_context) @@ -141,7 +141,7 @@ class BlogMonthArchiveView(MonthArchiveView): class BlogDayArchiveView(DayArchiveView): allow_future = True extra_context = {} - + def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context.update(self.extra_context) @@ -150,7 +150,7 @@ class BlogDayArchiveView(DayArchiveView): class BlogDateDetailView(DateDetailView): allow_future = True extra_context = {} - + def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context.update(self.extra_context)