Skip to main content

Actions for Django inline admin

Project description

Easy-to-use actions for Django admin inlines

https://img.shields.io/github/workflow/status/kvirt/django-inlines-actions/GH https://img.shields.io/codecov/c/github/kvirt/django-inlines-actions https://img.shields.io/pypi/v/django-inlines-actions

Installation

  1. Install django_inlines_actions

    pip install django_inlines_actions
  2. Add inlines_actions to your INSTALLED_APPS.

  3. Add the InlineActionsModelAdminMixin to your ModelAdmin.

  4. Add the InlineActionsMixin to your TabularInline.

  5. Add inline_actions attribute to your TabularInline as a tuple of your actions.

    inline_actions = ('your_action_name', 'another_action_name',)
  6. Every action must have following signature:

    def your_action_name(self, request, obj, parent_obj):

Usage

Action is basically a link to another url with corresponding view. It does not depends on form as some other solutions and not execute on Enter hit. Action should return None to return to the current changeform or a HttpResponse instance. If you want do disable Actions column set inline_actions to None.

inline_actions = ('change_title',)

def change_title(self, request, obj, parent_obj):
    obj.title  = obj.title + ' | ' + parent_obj.name
    obj.save()

Features

Permissions

Permissions are instance of list/tuple classes and can be either custom function or django built-in permission.

def your_action_name(self, request, obj, parent_obj):
    pass
your_action_name.permissions = ('permission_func_name', 'django_builtin_permission_name',)

permissions function must have following signature:

def permission_func_name(self, request, obj, parent_obj):

Must return False to fail permission check otherwise permission will be passed.

If permissions returns False action will no be rendered for user and action will raise PermissionDenied on execution.

Short Description

Short Description are either custom function or simple string.

def your_action_name(self, request, obj, parent_obj):
    pass
your_action_name.short_description = 'My Uniq Description'
your_action_name.short_description = 'short_description_func_name'

short_description function must have following signature:

def short_description_func_name(self, request, obj, parent_obj):

Css Class

Css Class are either custom function or simple string.

def your_action_name(self, request, obj, parent_obj):
    pass
your_action_name.css_class = 'my-css-class-name'
your_action_name.css_class = 'css_class_func_name'

css_class function must have following signature:

def css_class_func_name(self, request, obj, parent_obj):

Example

from django.contrib import admin
from inlines_actions import InlineActionsModelAdminMixin, InlineActionsMixin

from .models import Article1, Author1


class ArticleInline(
    InlineActionsMixin,
    admin.TabularInline,
):
    model = Article1
    inline_actions = ('make_published',)

    def make_published(self, request, obj, parent_obj):
        obj.is_published = not obj.is_published
        obj.save()

    def make_published_permission(self, request, obj, parent_obj):
        if not request.user.is_superuser:
            return False

    def make_published_short_description(self, request, obj, parent_obj):
        return 'Published Make'

    def make_published_css_class(self, request, obj, parent_obj):
        return 'some_class'

    make_published.permissions = ('make_published_permission', 'example_app:can_change_article')
    make_published.short_description = make_published_short_description
    make_published.css_class = make_published_css_class


class AuthorAdmin(
    InlineActionsModelAdminMixin,
    admin.ModelAdmin,
):
    inlines = (ArticleInline,)


admin.site.register(Author1, AuthorAdmin)

Tests

pip install requirements.txt
tox

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_inlines_actions-0.4.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_inlines_actions-0.4-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file django_inlines_actions-0.4.tar.gz.

File metadata

  • Download URL: django_inlines_actions-0.4.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for django_inlines_actions-0.4.tar.gz
Algorithm Hash digest
SHA256 0bd13a482b4d313e14b6d57f2b4428c5f6e04d552479532823be32fafc90060c
MD5 1bc6904dd63e092490f1d400ce29ca6c
BLAKE2b-256 10d9de645bb4411d150c6baccaf214317c2d4e477d7b7e2e809c537f155e4fe0

See more details on using hashes here.

File details

Details for the file django_inlines_actions-0.4-py3-none-any.whl.

File metadata

  • Download URL: django_inlines_actions-0.4-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for django_inlines_actions-0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 3d2344025a045b242b01ea0ec09028ba50cf7d21f0d149133497c95df112559f
MD5 dc9a994be6a7c7edfe6a2bb804e62a26
BLAKE2b-256 8d025388491c6f11de66429805c200778b55b985e0258f8b375c9ea60bb1d022

See more details on using hashes here.

Supported by

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