Skip to main content

Quick search anything in Django Admin from a single place

Project description

djangomni-search

Django Admin Site extension, that allows searching all entities from single field

Installation

Please read the instructions carefully, extending Django Admin on this level can go wrong very easily.

1. Pip your deps

Basically, install the dependency. You can use poetry, or any other package manager.

pip install djangomni-search

2. Put djangomni_search into INSTALLED_APPS

It is important to put it on the top.

INSTALLED_APPS = [
    'djangomni_search',
    'django.contrib.admin',
    'django.contrib.auth',
    '...',
]

3. Configure Admin Site

Now you will need to configure your Admin Site(s) to inherit from djangomni_search.admin.OmniSearchAdminSite. If you're using the default AdminSite, you must create a custom one.

class SiteAdmin(OmniSearchAdminSite, AdminSite):
    ...

4. Extend your custom base_site.html

If you do not have a custom base_site.html, it should already work. In case you have done some customizations to your base site file, you will need to add one script to all pages in admin. This can be only done by extending the base template.

{% block extrahead %}
{% if omni_search %}
  <link
    href="{% static 'djangomni-search/main.css' %}"
    rel="stylesheet"
    type="text/css"
  />
  <script
    data-config="{{omni_search}}"
    id="djangomni-search"
    src="{% static 'djangomni-search/main.js' %}"
  ></script>
{% endif %}
{% endblock %}

5. Configure autocomplete

The Omni Search looks for data using the autocomplete_fields attribute of ModelAdmin. Configure it for all the models, that you want to search.

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

djangomni_search-0.2.0.tar.gz (70.6 kB view details)

Uploaded Source

File details

Details for the file djangomni_search-0.2.0.tar.gz.

File metadata

  • Download URL: djangomni_search-0.2.0.tar.gz
  • Upload date:
  • Size: 70.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for djangomni_search-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b6a6b7d038d43b11aa3c506e2f8cd52b4f092b7294eb7307dd6c616e1292aba1
MD5 30f406c44ee854db17f20b439b5924d6
BLAKE2b-256 6d2b3df37984a245e6e16cb2dbfd19bbbed3dcf94167d6e0829ea110d15dff9f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page