Yet another django mixins compilation
Project description
What is it?
django-rmixins 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-rmixins
Run pip install django-rmixins.
Run easy_install django-rmixins.
Download or “hg clone” the package and run setup.py.
Download or “hg clone” the package and add rmixins to your PYTHONPATH.
Usage
For example if you’d like to use the CacheMixin:
from django.views.generic import ListView from rmixins.mixins import CacheMixin class PostsListView(CacheMixin, ListView): cache_timeout = 900 model = Posts
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-rmixins-1.8.0.tar.gz
(4.5 kB
view hashes)