juliocc / django-taggit-autosuggest-select2

My fork of django-taggit-autosuggest that uses Select2 instead of jQuery auto-suggest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is my fork of https://bitbucket.org/fabian/django-taggit-autosuggest

Instead of using jQuery autosuggest, this widget uses Select2.

Credits

This project is directly based on those projects:

Installation

  • If django-taggit isn't installed yet, add 'taggit' to your INSTALLED_APPS in your project settings
  • Add "taggit_autosuggest_select2" to your INSTALLED_APPS in your project settings
  • Run "python manage.py collectstatic" in your django site dir.
  • Add the following line to your project's urls.py file: (r'^taggit_autosuggest_select2/', include('taggit_autosuggest_select2.urls')),

Settings

  • TAGGIT_AUTOSUGGEST_SELECT2_STATIC_BASE_URL Instead of collecting and serving the static files directly, you can also set this variable to your static base URL somewhere else.
  • TAGGIT_AUTOSUGGEST_SELECT2_MAX_SUGGESTIONS (Defaults to 20): The amount of suggestions is limited, you can raise or lower the limit of default 20 using this setting.

Usage

  • To enable autosuggesting Tags, just let the tagged model use TaggableManager:

      from django.db import models
      from taggit_autosuggest.managers import TaggableManager
    
      class SomeModel(models.Model):
    
          tags = TaggableManager()
    

About

My fork of django-taggit-autosuggest that uses Select2 instead of jQuery auto-suggest

License:MIT License


Languages

Language:JavaScript 83.0%Language:CSS 12.7%Language:Python 4.2%