Skip to main content

Visualsearch.js for Django admin

Project description

django-admin-visualsearch
=========================

Replace for standard search input in django admin interface.

![Example of usage](https://raw.github.com/unk2k/django-admin-visualsearch/master/screenshoot.png)

Install
-------

For install you can use pip:
```
pip install django-admin-visualsearch
```


Usage
-------

models.py

```
from django.db import models

class Author(models.Model):
first_name = ....
last_name = ....

class Books(models.Model):
title = ....
author = models.ManyToManyField(Author)
```

admin.py

```
from visualsearch import VisualSearchAdmin
from django.contrib import admin
from books.models import Books

class BooksAdmin(VisualSearchAdmin, admin.ModelAdmin):
visualsearch_fields = {
'title': u'Book title',
'author__first_name__last_name': u'Author',
}

admin.site.register(Books, BooksAdmin)
```

django-admin-visualsearch split "author__first_name__last_name" and find usage keys (author__first_name, author__last_name).
For related fields you must use specifical subfield for search (for example: author__first_name).

Note
-------

If you use visualsearch, you don't use other standart filter in admin interface cls

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-admin-visualsearch-1.2.tar.gz (147.5 kB view details)

Uploaded Source

File details

Details for the file django-admin-visualsearch-1.2.tar.gz.

File metadata

File hashes

Hashes for django-admin-visualsearch-1.2.tar.gz
Algorithm Hash digest
SHA256 c57f331c4b75b39adf0916717c8f575b6eeee5154d1b351552a0069f1ad93b05
MD5 5c8b2dc106eeaf0677de67e3fba9fcfa
BLAKE2b-256 f5f53baa3ef217c426fe99a380ef1b4dd01ae7d1c7878fa6600faf79ddb551e6

See more details on using hashes here.

Supported by

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