Skip to main content

No project description provided

Project description

Easy Staff Required

A simple Django decorator to restrict view access to staff users.

Installation

Install the package using pip:

pip install easy-staff-required

Usage

After installing the package, you can use the @staff_required decorator in your Django views to restrict access to staff users. Here's an example:

from django.shortcuts import render
from easy_staff_required import staff_required

@staff_required
def my_view(request):
    return render(request, "my_template.html")

The @staff_required decorator checks if the user is authenticated and has the is_staff attribute set to True. If the user is not a staff member, a PermissionDenied exception is raised.

You can also use the @staff_required decorator in combination with Django's built-in @login_required decorator:

from django.contrib.auth.decorators import login_required
from easy_staff_required import staff_required

@login_required
@staff_required
def my_view(request):
    return render(request, "my_template.html")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easy-staff-required-0.4.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

easy_staff_required-0.4-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page