- @cached_render('funding/includes/funding.html')
- def top_bar(self):
- ctx = self.basic_info()
- ctx.update({
- 'link': True,
- 'closeable': True,
- 'add_class': 'funding-top-header',
- })
- return ctx
-
- @cached_render('funding/includes/funding.html')
- def list_bar(self):
- ctx = self.basic_info()
- ctx.update({
- 'link': True,
- 'show_title_calling': False,
- })
- return ctx
-
- @cached_render('funding/includes/funding.html')
- def detail_bar(self):
- ctx = self.basic_info()
- ctx.update({
- 'show_title': False,
- })
- return ctx
-