Skip to main content

Force disable permissions in admin site.

Project description

django-force-disable-permissions-admin

Force disable permissions in admin site.

Install

pip install django-force-disable-permissions-admin

Usage

pro/settings.py

INSTALLED_APPS = [
    ...
    'django_force_disable_permissions_admin',
    ...
]

app/admin.py

from django.contrib import admin
from .models import Category
from .models import Book
from django_force_disable_permissions_admin.admin import DjagnoForceDisablePermissionsAdminMixin

class BookInline(admin.TabularInline):
    model = Book

class CategoryAdmin(DjagnoForceDisablePermissionsAdminMixin, admin.ModelAdmin):
    add_permission_enable_for_superuser = False
    delete_permission_enable_for_superuser = False
    change_permission_enable_for_superuser = False
    view_permission_enable_for_superuser = False
    force_disable_add_permission = True
    force_disable_delete_permission = True
    force_disable_change_permission = True
    force_disable_view_permission = False

    list_display = ["name"]
    inlines = [
        BookInline,
    ]

admin.site.register(Category, CategoryAdmin)

Control Variables

  • add_permission_enable_for_superuser = False
  • delete_permission_enable_for_superuser = False
  • change_permission_enable_for_superuser = False
  • view_permission_enable_for_superuser = False
  • force_disable_add_permission = False
  • force_disable_delete_permission = False
  • force_disable_change_permission = False
  • force_disable_view_permission = False

Note:

  • By default, DjagnoForceDisablePermissionsAdminMixin doesn't change anything.
  • Use the control-variabl to disable permissions.

Releases

v0.2.1 2021.05.17

  • Fix has_add_permission for Django 3.x.

v0.2.0 2020.02.26

  • App rename to django_force_disable_permissions_admin.

v0.1.1 2020.02.05

  • Fix usage document.

v0.1.0 2020.02.05

  • First release.

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

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