These actions will appear on each row on the changelist page as a dropdown button containing all custom row actions.
# admin.py
from django.contrib.admin import register
from django.contrib.auth.models import User
from django.shortcuts import redirect
from django.urls import reverse_lazy
from django.utils.translation import gettext_lazy as _
from django.http import HttpRequest
from unfold.admin import ModelAdmin
from unfold.decorators import action
@register(User)
class UserAdmin(ModelAdmin):
actions_row = ["changelist_row_action"]
@action(
description=_("Changelist row action"),
permissions=["changelist_row_action"],
url_path="changelist-row-action",
attrs={"target": "_blank"}
)
def changelist_row_action(self, request: HttpRequest, object_id: int):
return redirect(
reverse_lazy("admin:users_user_changelist")
)
def has_changelist_row_action_permission(self, request: HttpRequest):
pass
Django admin theme built with Tailwind CSS to bring modern look and feel to your admin interface. Already contains several built-in features for smooth developer experience.
© 2023 - 2024 Created by unfoldadmin.com. All rights reserved.