Read item detail first, and click the Edit switch button to turn to edit view.
Project description
django-readedit-switch-admin
Read item detail first, and click the Edit switch button to turn to edit view.
Install
pip install django-readedit-switch-admin
Usage
pro/settings.py
INSTALLED_APPS = [
...
'django_readedit_switch_admin',
...
]
app/admin.py
from django.contrib import admin
from .models import Category
from .models import Book
from django_readedit_switch_admin.admin import DjangoReadEditSwitchAdmin
class BookInline(admin.TabularInline):
model = Book
class CategoryAdmin(DjangoReadEditSwitchAdmin, admin.ModelAdmin):
list_display = ["pk", "name"]
list_editable = ["name"]
inlines = [
BookInline
]
admin.site.register(Category, CategoryAdmin)
Releases
Version | Released Time | Content | Notice |
---|---|---|---|
v0.1.0 | 2020.02.04 | 1. First release. | |
v0.1.1 | 2020.02.20 | 2. Fix add/change/delete permission problem in changelist view. Changelist view should obey the real permission. | |
v0.1.2 | 2020.02.24 | 3. Don't check is_edit_view in getting add and delete permissions. | |
v0.2.0 | 2020.02.26 | 4. App rename to django_readedit_switch_admin. | |
v0.3.0 | 2020.03.05 | 5. Fix django_readedit_switch_admin.apps' verbose_name. 6. Rename DjangoReadEditSwitchAdminMixin to DjangoReadEditSwitchAdmin. It's NOT good to add mixin suffix. |
|
v0.4.0 | 2020.03.07 | 7. Rename django_readedit_switch_admin.html to change_form.html, so that it can be override by other applications. | |
v0.4.1 | 2020.03.08 | 8. Fix problem for all NONE DjangoReadeditSwitchAdmins. | |
v0.4.2 | 2020.03.08 | 9. Fix block.super spell mistake. | |
v0.4.3 | 2020.09.08 | 10. Use jquery.js shipped with django, and control js loading order. | |
v0.4.4 | 2020.11.15 | 11. Fix edit problem with _changelist_filters. | |
v0.4.5 | 2021.04.13 | 12. Fix has_add_permission problem. 13. Test in Django 3.2. |
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-readedit-switch-admin-0.4.5.tar.gz
.
File metadata
- Download URL: django-readedit-switch-admin-0.4.5.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3b0543b9fca71bbd46598a0b622ccd29c6080339c28e5d53bfe3ca5dab03163 |
|
MD5 | 81efe88f8e9e3934afe71ee7183ca5b1 |
|
BLAKE2b-256 | e0f4772ed6260fbfa7f3c0ac9c3b30a12b62165d6c4f6fdce37c49fd4d769435 |