Metadata-Version: 2.1
Name: django-morechecks
Version: 0.1.0
Summary: additional checks for Django > 1.7
Author: Keryn Knight
Author-email: python-package@kerynknight.com
License: BSD License
Keywords: django checks
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: Django
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: Django>1.6

=================
django-morechecks
=================

Because Django 1.7 has a new checks framework, but only for things that
*would prevent startup or cause known problems.*

This is me implementing others, as I need them.

Checks
------

* ``morechecks.checks.templates_do_not_do_queries`` - Ensures that any custom
  context processors do not trigger a query just by being used. They should
  instead be made lazy, such that the database is hit when the context variable
  is *used*.

That's it, so far.

Usage
-----

Add ``morechecks`` to your ``INSTALLED_APPS`` and run::

    python manage.py check morechecks
