Skip to main content

Django Groot

Project description

Groot

Django Groot

An alternative admin interface for managing group permissions with django-guardian. Groot requires django-guardian for maintaining permissions, however Groot only focuses on groups for object permissions - per user object level permissions aren’t allowed for simplicity.

Installation

Using pip:

$ pip install django-groot

Follow the instructions for installing django-guardian if you haven’t already.

Edit your Django project’s settings module, and add groot:

INSTALLED_APPS = [
    # ...
    'groot',
]

Usage

Add GrootAdminMixin to the admin class you want Groot to be used on:

from django.contrib import admin
from groot.admin import GrootAdminMixin

from .models import Post


@admin.register(Post)
class PostAdmin(GrootAdminMixin, admin.ModelAdmin):
    pass

To limit the permissions which can be edited, add a groot_permissions attribute:

class PostAdmin(GrootAdminMixin, admin.ModelAdmin):
    groot_permissions = ('change_post', 'delete_post')

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

django-groot-0.1.1.tar.gz (6.6 kB view hashes)

Uploaded Source

Built Distribution

django_groot-0.1.1-py2.py3-none-any.whl (10.6 kB view hashes)

Uploaded Python 2 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