dj-mixins 0.1.1

Creator: danarutscher

Last updated:

Add to Cart

Description:

djmixins 0.1.1

mixins
Custom Django mixins for class based views
Getting started
Install mixins:
pip install dj-mixins

Now you can start using the mixins.
Usage
Let's say that we want to implement a view that accepts requests from superusers only. To achieve this we can use SuperUserMixin:
""" Views.py """


from django.views.generic import TemplateView
from mixins.mixins import SuperUserMixin


# Create your views here.
class SuperUserView(SuperUserMixin, TemplateView):
""" A view that accepts request from superusers only """

template_name = 'myapp/index.html'

I hope that you find this useful.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.