django-taggit-autocomplete

Autocompletion for django-taggit
Download

django-taggit-autocomplete Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Jeremy Epstein
  • Publisher web site:
  • http://github.com/Jaza/

django-taggit-autocomplete Tags


django-taggit-autocomplete Description

django-taggit-autocomplete is a fork of django-tagging-autocomplete, which can be found at: http://code.google.com/p/django-tagging-autocomplete/It's virtually the same app, only it's changed to work with django-taggit: http://github.com/alex/django-taggitInstallation1. You need to have django-taggit already installed2. Download django-taggit-autocomplete and use setup.py to install it on your system: python setup.py install3. Download jquery-autocomplete and put it in the folder specified in your project's MEDIA_URL setting. If you want to put it somewhere else add TAGGIT_AUTOCOMPLETE_JS_BASE_URL to your project settings.4. Add "taggit_autocomplete" to installed apps in your project's settings.5. Add the following line to your project's urls.py file: (r'^taggit_autocomplete/', include('taggit_autocomplete.urls')),UsageUsing the model fieldYou can use TaggableManager to enable autocompletion right in your models.py file. In most cases this is the easiest solution. Example:from django.db import models from taggit_autocomplete.managers import TaggableManagerclass SomeModel(models.Model): tags = TaggableManager()Product's homepage


django-taggit-autocomplete Related Software