fmartingr.com-legacy/_old/fmartingrcom/apps/homepage/views.py

13 lines
380 B
Python

from django.shortcuts import render_to_response
from django.template import RequestContext
from fmartingrcom.apps._core.views import View
class HomepageView(View):
template = 'homepage.jinja'
section = 'homepage'
def get(self, request):
context = RequestContext(request, self.data)
return render_to_response(self.template, context_instance=context)