Generated: Fri 2012-09-28 15:02 CEST
Source file: /Users/martin/Repos/django-frequently/frequently/views.py
Stats: 4 executed, 0 missed, 1 excluded, 7 ignored
"""
Views for the ``django-frequently`` application.
"""
from django.views.generic import TemplateView
class HomeView(TemplateView):
template_name = 'frequently/home.html'
def dispatch(self, *args, **kwargs):
return super(HomeView, self).dispatch(*args, **kwargs)