Metadata-Version: 2.4
Name: django-admin-models-search
Version: 1.0.1
Summary: Add a search bar for registered models in Django admin
Home-page: 
Author: Timothée Roy
Author-email: timothee@vingtcinq.io
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: Django>=3.2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Django Admin Models Search

A Django package that adds a global search bar to the Django admin interface, allowing you to quickly search and navigate between registered models.

## Features

- Adds a global search bar to the Django admin header.
- Provides suggestions for registered models as you type.
- Supports keyboard navigation for quick access.
- Fully customizable and easy to integrate.

## Installation

Install the package via `pip`:

```bash
pip install django-admin-models-search
```

## Configuration 
1. Add the app to your INSTALLED_APPS in settings.py

```python
INSTALLED_APPS = [
    # Other apps...
    'django_admin_models_search',
]
```

2. Include the package's URLs in your urls.py

```python 
from django.urls import path, include

urlpatterns = [
    path('', include('django_admin_models_search.urls')),
]
```
