https://github.com/drager/django-simple-mixins
django-simple-mixins contains some Mixins to use for Django's Class Based Views.
https://github.com/drager/django-simple-mixins
Last synced: 7 months ago
JSON representation
django-simple-mixins contains some Mixins to use for Django's Class Based Views.
- Host: GitHub
- URL: https://github.com/drager/django-simple-mixins
- Owner: drager
- License: bsd-2-clause
- Created: 2014-04-18T10:42:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-19T08:19:32.000Z (over 11 years ago)
- Last Synced: 2025-05-23T15:39:15.370Z (8 months ago)
- Language: Python
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==========================
django-simple-mixins
==========================
What is it?
===========
django-simple-mixins is a simple Django App that contains some Mixins to use for Django's Class Based Views.
Installation
============
You can do any of the following to install ``django-simple-mixins``
- Run ``pip install django-simple-mixins``.
- Run ``easy_install django-simple-mixins``.
- Download or "git clone" the package and run ``setup.py``.
- Download or "git clone" the package and add ``simplemixins`` to your PYTHONPATH.
Usage
=====
For example if you'd like to use the ``CacheMixin``::
from django.views.generic import ListView
from simplemixins.mixins import CacheMixin
class ArticleListView(CacheMixin, ListView):
cache_timeout = 60 * 15 # 900 – that is, 15 minutes multiplied by 60 seconds per minute.
model = Article
Requirements
============
`Django>=1.5
`_