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
v0.4.1 2020.03.08
- Fix problem for all NONE DjangoReadeditSwitchAdmins.
v0.4.0 2020.03.07
- Rename django_readedit_switch_admin.html to change_form.html, so that it can be override by other applications.
v0.3.0 2020.03.05
- Fix django_readedit_switch_admin.apps' verbose_name.
- Rename DjangoReadEditSwitchAdminMixin to DjangoReadEditSwitchAdmin. It's NOT good to add mixin suffix.
v0.2.0 2020.02.26
- App rename to django_readedit_switch_admin.
v0.1.2 2020.02.24
- Don't check is_edit_view in getting add and delete permissions.
v0.1.1 2020.02.20
- Fix add/change/delete permission problem in changelist view. Changelist view should obey the real permission.
v0.1.0 2020.02.04
- 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-readedit-switch-admin-0.4.1.tar.gz
.
File metadata
- Download URL: django-readedit-switch-admin-0.4.1.tar.gz
- Upload date:
- Size: 6.5 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.43.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f93224fd26ee1365fb1ec16bf9a519a381f74690cac083837315142411974642 |
|
MD5 | f732a81be757faa979a90e258b7664a9 |
|
BLAKE2b-256 | ea19cc3112b39fa9aab544e90266dc764748619e168fa7b42d36f154e6e2bf30 |