frequently.cms_app: 7 total statements, 0.0% covered

Generated: Sun 2013-11-24 13:53 SGT

Source file: /Users/martin/Repos/django-frequently/frequently/cms_app.py

Stats: 0 executed, 4 missed, 3 excluded, 8 ignored

  1. """
  2. django-cms Apphook for the ``django-frequently`` application.
  3. """
  4. from cms.app_base import CMSApp
  5. from cms.apphook_pool import apphook_pool
  6. from django.utils.translation import ugettext_lazy as _
  7. class FrequentlyApphook(CMSApp):
  8. name = _("Frequently App")
  9. urls = ["frequently.urls"]
  10. apphook_pool.register(FrequentlyApphook)