add aggregator app
This commit is contained in:
@@ -6,13 +6,16 @@ class CabinetViewMixin(LoginRequiredMixin):
|
||||
title = 'No title'
|
||||
sidebar_section = None
|
||||
|
||||
def get_sidebar_section(self):
|
||||
return self.sidebar_section
|
||||
|
||||
def get_title(self):
|
||||
return self.title
|
||||
|
||||
def get_context_data(self, **kwargs):
|
||||
ctx = super(CabinetViewMixin, self).get_context_data(**kwargs)
|
||||
ctx['title'] = self.get_title()
|
||||
ctx['sidebar_section'] = self.sidebar_section
|
||||
ctx['sidebar_section'] = self.get_sidebar_section()
|
||||
return ctx
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user