frequently.views: 5 total statements, 100.0% covered

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

  1. """
  2. Views for the ``django-frequently`` application.
  3. """
  4. from django.views.generic import TemplateView
  5. class HomeView(TemplateView):
  6. template_name = 'frequently/home.html'
  7. def dispatch(self, *args, **kwargs):
  8. return super(HomeView, self).dispatch(*args, **kwargs)