django admin extensions.
Project description
django-fastadmin
django admin extensions.
Install
pip install django-fastadmin
Usage
pro/settings.py
INSTALLED_APPS = [
...
'django_static_jquery3',
'django_static_ace_builds',
'django_db_lock',
'django_fastadmin',
...
]
- Add dependence package names in INSTALLED_APPS.
Installed Admin Extensions
Admin extends
- UuidFieldSearchableAdmin
- InlineBooleanFieldsAllowOnlyOneCheckedMixin
Widgets
- AceWidget
Forms
Filters
admin.InlineBooleanFieldsAllowOnlyOneCheckedMixin Usage
django_static_jquery3
required in INSTALLED_APPS.- Add this mixin to inline class, and put it before TabularInline.
- Add classes property
- Add class InlineBooleanFieldsAllowOnlyOneCheckedMixin.special_class_name
- Add class InlineBooleanFieldsAllowOnlyOneCheckedMixin.field_name_prefix + {field name},
- Example:
from django.contrib import admin from django_fastadmin.admin import InlineBooleanFieldsAllowOnlyOneCheckedMixin from .models import Book from .models import Category class BookInline(InlineBooleanFieldsAllowOnlyOneCheckedMixin, admin.TabularInline): model = Book extra = 0 classes = [ InlineBooleanFieldsAllowOnlyOneCheckedMixin.special_class_name, InlineBooleanFieldsAllowOnlyOneCheckedMixin.field_name_prefix + "is_best_seller", ] class CategoryAdmin(admin.ModelAdmin): inlines = [ BookInline, ] admin.site.register(Category, CategoryAdmin)
widget.AceWidget Usage
django_static_jquery3
anddjango_static_ace_builds
required in INSTALLED_APPS.- Create a model_form, and set the admin's form to the model_form.
- Set the field to use AceWidget in the model_form.
- Example:
class BookModelForm(forms.ModelForm):
class Meta:
model = Book
fields = "__all__"
widgets = {
"description": AceWidget(ace_options={
"mode": "ace/mode/yaml",
"theme": "ace/theme/twilight",
}),
}
class BookAdmin(admin.ModelAdmin):
form = BookModelForm
list_display = ["title", "published"]
Bug report
Please report any issues at https://github.com/zencore-cn/zencore-issues.
Releases
v0.3.0 2020/09/01
- Change the directory structure of static files.
- Add models.SimpleTask. It's an abstract model.
- jQuery and jQuery plugins are moved to django-static-jquery3>=5.0.0.
v0.2.0 2020/08/25
- Add widgets.AceWidget.
v0.1.1 2020/08/13
- Fix jquery.js and jquery.init.js including orders, so that we don't need to change js plugin's source to use django.jQuery.
v0.1.0 2020/08/12
- First release.
- Add UuidFieldSearchableAdmin.
- Add InlineBooleanFieldsAllowOnlyOneCheckedMixin.
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
django-fastadmin-0.3.0.tar.gz
(10.2 kB
view details)
File details
Details for the file django-fastadmin-0.3.0.tar.gz
.
File metadata
- Download URL: django-fastadmin-0.3.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8e0de7519d5b03a9f263c2616d6588e7b80da5b07582a8b45b72ea79d545eee |
|
MD5 | f7c58c590fb93905c880516df88b3c9d |
|
BLAKE2b-256 | 1a79df15418649d860a8f83fdb76c34955b221f1d6539c22dff0b519e69213e9 |