view sg101/views.py @ 1104:47e7dc23da4a

Membermap no longer needs jquery-ui.
author Brian Neal <bgneal@gmail.com>
date Wed, 06 Jul 2016 20:27:46 -0500
parents 5a6349fb72bd
children c31008989a16
line wrap: on
line source
"""Misc views for SG101"""

from django.views.generic import TemplateView


class StoreView(TemplateView):
    template_name = 'store/base.html'

    def get_context_data(self, **kwargs):
        context = super(StoreView, self).get_context_data(**kwargs)
        context['V3_DESIGN'] = True
        return context