Helpful mixins for Django View classes.
Project description
Provides some common mixin patterns for Django’s View classes.
Installation
Run pip install django-viewclass-mixins
View Mixins
###LoginMixin Ensures the view is being requested by an authenticated user or redirects to the login page. It behaves the same as the function decorator login_required.
###StaffRequiredMixin Ensures the view is being request by an authenticated user that is marked as staff.
###SuperuserRequiredMixin Ensures the view is being request by an authenticated user that is marked as a superuser.
###OwnershipMixin A mixin to single-object views. Ensures the view is by requested by the owner of the requested object.
###DeactivateMixin A mixin to the DeleteView. Instead of deleting an object it will mark it as inactive instead.
###FilterListMixin A mixin to the ListView. It will apply filters from the URL querystring to the underlying QuerySet before the list is returned.
###ModelFormSetMixin A mixin to the CreateView and UpdateView. It take a list of FormSets and validates and saves them along with the main model.
###HttpCacheMixin A mixin to any View. It has methods for setting HTTP cache headers like Cache-Control, Vary, ETag, and Last-Modified.
###CorsMixin A mixin to a Django Rest Framework View. It sets permissive CORS headers and handles the OPTIONS response.
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
File details
Details for the file django-viewclass-mixins-1.1.3.zip
.
File metadata
- Download URL: django-viewclass-mixins-1.1.3.zip
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b242f4bdf76e5b7d818f203706393c2704c9862dc7ae610a66ee3a4b3b5589df |
|
MD5 | a20b09097cab2d207958be2e723101af |
|
BLAKE2b-256 | 6c28cba8a6a7f4dcb20b5c2c7df7c89c2f32ec1384db8893af74533d76cd43c7 |