Add toolbar in every item line in django's changelist view, and on top of django's changeform view.
Project description
django-object-tools-admin
Add toolbar in every item line in django's changelist view, and on top of django's changeform view.
Install
pip install django-object-toolbar-admin
Usage
pro/settings.py
INSTALLED_APPS = [
...
'django_static_fontawesome',
'django_object_toolbar_admin',
...
]
- Add django_static_fontawesome and django_object_toolbar_admin applications in INSTALLED_APPS.
app/admin.py
from django.contrib import admin
from django_object_toolbar_admin.admin import DjangoObjectToolbarAdmin
from .models import Category
class CategoryAdmin(DjangoObjectToolbarAdmin, admin.ModelAdmin):
list_display = ["name", "django_object_toolbar", "my_toolbar"]
django_object_toolbar_changeform_buttons = [
"print",
"export",
"bye",
]
# define default toolbar
django_object_toolbar_buttons = [
"print",
"export",
'bye',
]
def print(self, obj):
return "/print"
print.icon = "fas fa-print"
print.title = "Print"
print.help_text = "Print the object information..."
def export(self, obj):
return "/export"
export.icon = "fas fa-save"
export.title = "Export"
# define my toolbar
def my_toolbar(self, obj):
return self.get_django_object_toolbar("my_toolbar_buttons", obj)
my_toolbar.short_description = "My Toolbar"
my_toolbar_buttons = [
"delete",
"say_hi",
]
def delete(self, obj):
return "/delete"
delete.icon = "fas fa-trash"
delete.title = "Delete"
def say_hi(self, obj):
return "javascript:alert('hi {}');".format(obj.pk)
say_hi.icon = "fas fa-music"
say_hi.title = "Say Hi!"
admin.site.register(Category, CategoryAdmin)
- Buttons in
django_object_toolbar_changeform_buttons
will display on top of changeform view. - Buttons in
django_object_toolbar_buttons
ormy_toolbar_buttons
will display in every line in changelist view. You need to putdjango_object_toolbar
ormy_toolbar
inlist_display
. - A button can be a method of admin or a method of model instance.
- A button method returns the link of the button.
- A button method tasks extra configs:
- button.title
- button.icon
- button.help_text
- button.target
- button.klass
Releases
v0.1.0 2020/05/24
- First release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-object-toolbar-admin-0.1.0.tar.gz
.
File metadata
- Download URL: django-object-toolbar-admin-0.1.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83e705d23edbeb7bc1d337f531521b3bed368fe17c7325d71d60137a1e81b4a6 |
|
MD5 | aca3bf5c4b6d0918784c4d317f3055c5 |
|
BLAKE2b-256 | 429fd1ab22da54931aef5e013a6588a86fd2de0d7c3fead719cd2c90da340513 |