Ajax call in Django admin interface
Project description
Auto load field data on change of other field value in django admin with Ajax call
Requirements
Django 2.0+
Installation
pip install django-indo
Add indo to INSTALLED_APPS:
INSTALLED_APPS = [
...
'indo',
...
]
Example usage
from indo.admin import IndoResponseMixin, IndoSetFieldMixin
@admin.register(Customer)
class CustomerAdmin(IndoResponseMixin, admin.ModelAdmin):
fields = (
'name',
'address',
)
@admin.register(Order)
class OrderAdmin(IndoSetFieldMixin, admin.ModelAdmin):
fields = (
'customer',
'delivery_address',
)
indo_fields = {
'delivery_address': 'customer__address'
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-indo-1.0.4.tar.gz
(6.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-indo-1.0.4.tar.gz.
File metadata
- Download URL: django-indo-1.0.4.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52b7ecd598924ac866611fcd50a44d98387604e8bfb82a4dcfe0a39b306f9433
|
|
| MD5 |
1fbc1cd785c8f83e66b50c9d8cbd4b55
|
|
| BLAKE2b-256 |
f724c54b15002476bf6d2c5289d01550dc868618a98342ef88753a50179a0cf8
|
File details
Details for the file django_indo-1.0.4-py2.py3-none-any.whl.
File metadata
- Download URL: django_indo-1.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b91c30ae15594fb7d3c2c6f30e251f60d7cfe8aaec96321a0fffb1190f93c22
|
|
| MD5 |
8002e36e8ff18eb4b44a086b0ebf7153
|
|
| BLAKE2b-256 |
fd1a9c878aa32238f7df87ba45e8d129fe9fc3fac68e2bdf043b109ef23fdb17
|