|
|
||
|---|---|---|
| .. | ||
| README.md | ||
README.md
| title | authors | |
|---|---|---|
| Web interface for tagging all results of a Solr search query |
|
Web interface for tagging all results of a Solr search query
Tags all results of a search query.
Usage
See the user documentation
Installation
- download the module
solr-search-querytagger-python-django - Copy the directory
querytaggerfrom the zip file into your Django apps directory - Enable the new app:
Add "querytagger" to your INSTALLED\APPS setting like this:
INSTALLED_APPS = (
...
'querytagger',
)
Include the querytagger URLconf in your project urls.py like this:
url(r'^querytagger/', include('querytagger.urls')),