Metadata-Version: 1.0
Name: django-cbv
Version: 0.1.4
Summary: Django Class Based Views
Home-page: https://github.com/sorl/django-cbv
Author: Mikko Hellsing
Author-email: mikko@aino.se
License: BSD
Description: Django Class Based Views
        ========================
        
        This is Django Class Based Views taken from Django trunk. Replace all the
        references from ``django.views.generic`` to ``cbv`` in the documentation.
        All views are available directly from ``cbv`` module, for example::
        
            from cbv import View, TemplateView
        
        You will need the following middleware installed::
        
            cbv.middleware.DeferredRenderingMiddleware
        
        
        `Django Class Based Views Docs <http://docs.djangoproject.com/en/dev/topics/class-based-views/>`_
        
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: Django
