├── .gitignore ├── .travis.yml ├── CHANGES.txt ├── LICENSE ├── README.rst ├── enhanced_cbv ├── __init__.py ├── models.py ├── response.py ├── tests │ ├── __init__.py │ ├── filters.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── authors_articles.html │ │ ├── authors_list.html │ │ └── dummy.html │ ├── test_settings.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── utils.py └── views │ ├── __init__.py │ ├── base.py │ ├── edit.py │ └── list.py ├── requirements.txt ├── runtests.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | v0.1, 12/01/2011 -- Initial release. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/README.rst -------------------------------------------------------------------------------- /enhanced_cbv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enhanced_cbv/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enhanced_cbv/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/response.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enhanced_cbv/tests/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/filters.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/forms.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/models.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/templates/authors_articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/templates/authors_articles.html -------------------------------------------------------------------------------- /enhanced_cbv/tests/templates/authors_list.html: -------------------------------------------------------------------------------- 1 | {{object_list}} 2 | {{filter.form}} 3 | -------------------------------------------------------------------------------- /enhanced_cbv/tests/templates/dummy.html: -------------------------------------------------------------------------------- 1 | Dummy 2 | -------------------------------------------------------------------------------- /enhanced_cbv/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/test_settings.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/tests.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/urls.py -------------------------------------------------------------------------------- /enhanced_cbv/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/tests/views.py -------------------------------------------------------------------------------- /enhanced_cbv/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/utils.py -------------------------------------------------------------------------------- /enhanced_cbv/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/views/__init__.py -------------------------------------------------------------------------------- /enhanced_cbv/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/views/base.py -------------------------------------------------------------------------------- /enhanced_cbv/views/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/views/edit.py -------------------------------------------------------------------------------- /enhanced_cbv/views/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/enhanced_cbv/views/list.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasca/django-enhanced-cbv/HEAD/tox.ini --------------------------------------------------------------------------------