Metadata-Version: 1.0
Name: django-cbv
Version: 0.2
Summary: Django class-based views, backported from Django trunk
Home-page: https://github.com/brutasse/django-cbv
Author: Bruno Renie
Author-email: buburno@gmail.com
License: BSD
Description: Django Class Based Views
        ========================
        
        This is Django Class Based Views taken from Django trunk.
        
        Use CBVs like this::
        
            import cbv as generic
        
        Then write your class-based views as expained in the `Django documentation`_::
        
            class SomeView(generic.TemplateView):
                template_name = 'some_template.html'
        
        .. _Django documentation: http://docs.djangoproject.com/en/dev/topics/class-based-views
        
        You will need the following middleware installed::
        
            cbv.middleware.DeferredRenderingMiddleware
        
        Once you're ready to use Django 1.3, you'll only need to switch the import
        statement to::
        
            from django.views import generic
        
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
