# HG changeset patch # User Brian Neal # Date 1479174036 21600 # Node ID a469445d8be3edef99c6c09e84598ee5b3d7229b # Parent c31008989a16430cda2ae6172d295fb25edfcf0f Convert fixed pages to V3 design. diff -r c31008989a16 -r a469445d8be3 core/views.py --- a/core/views.py Mon Nov 14 19:29:34 2016 -0600 +++ b/core/views.py Mon Nov 14 19:40:36 2016 -0600 @@ -56,4 +56,5 @@ context = super(FixedView, self).get_context_data(**kwargs) context['title'] = self.title context['content_template'] = self.content_template + context['V3_DESIGN'] = True return context diff -r c31008989a16 -r a469445d8be3 sg101/templates/fixed/base.html --- a/sg101/templates/fixed/base.html Mon Nov 14 19:29:34 2016 -0600 +++ b/sg101/templates/fixed/base.html Mon Nov 14 19:40:36 2016 -0600 @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'v3/base.html' %} {% block title %}{{ title }}{% endblock %} {% block content %} {% include content_template %}