Auto add placeholder content for django admin
Project description
django-search-placeholder
Auto add placeholder content for django admin
Install
- By git
pip install search-placeholder
Usage
- Add app name to settings
INSTALLED_APPS = [
...
"django.contrib.admin",
...
"search_placeholder",
...
]
- Use search_placeholder.ModelAdmin to replace admin.ModelAdmin
from django.contrib import admin
from search_placeholder import ModelAdmin
@admin.register(ModelClass)
class ModelClassAdmin(ModelAdmin):
# Just inherit from search_placeholder.ModelAdmin
# it will auto generate placeholder of search input by
# the verbose_name of 'field1' and 'field2'
# Or you can uncomment the next line to custom placeholder
#search_placeholder = 'Custom content'
search_fields = ('field1', 'field2')
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
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 search_placeholder-0.2.0.tar.gz.
File metadata
- Download URL: search_placeholder-0.2.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fb424a78c0eb91f91999cdea9b55232c1367db194d866d150349b67b3955ca5
|
|
| MD5 |
8976e5a1fb76038c2a7aa0b90c34a5ac
|
|
| BLAKE2b-256 |
71d157c6ff7f15d6da255c5b31c979b8a38665c064f3ea23e09ca68b4a25105a
|
File details
Details for the file search_placeholder-0.2.0-py3-none-any.whl.
File metadata
- Download URL: search_placeholder-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4851bcbec6e6eaddddc090ec5df7f66f6efd507c25fc7dcd9bdbbe4a1019c3a0
|
|
| MD5 |
5b6eece2800caeaffc7be1557168ae46
|
|
| BLAKE2b-256 |
3c833ff2c84675a843f34731f5dc17fae6a94d7ff5c0c6c47e5524f4a78cea90
|