search-placeholder

Auto add placeholder content for django admin


Keywords
django, search, placeholder
License
MIT
Install
pip install search-placeholder==0.2.0

Documentation

django-search-placeholder

Auto add placeholder content for django admin

Install

  • By git
pip install search-placeholder

Usage

  1. Add app name to settings
INSTALLED_APPS = [
    ...
    "django.contrib.admin",
    ...
    "search_placeholder",
    ...
]
  1. 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')