comparison core/views.py @ 1145:a469445d8be3

Convert fixed pages to V3 design.
author Brian Neal <bgneal@gmail.com>
date Mon, 14 Nov 2016 19:40:36 -0600
parents e932f2ecd4a7
children
comparison
equal deleted inserted replaced
1144:c31008989a16 1145:a469445d8be3
54 54
55 def get_context_data(self, **kwargs): 55 def get_context_data(self, **kwargs):
56 context = super(FixedView, self).get_context_data(**kwargs) 56 context = super(FixedView, self).get_context_data(**kwargs)
57 context['title'] = self.title 57 context['title'] = self.title
58 context['content_template'] = self.content_template 58 context['content_template'] = self.content_template
59 context['V3_DESIGN'] = True
59 return context 60 return context