Installation

  1. Install djangocms-page-tags:

    $ pip install djangocms-page-tags
    

    or from the repository:

    pip install -e https://github.com/nephila/djangocms-page-tags#egg=djangocms-page-tags
    
  2. Then add it to INSTALLED_APPS along with its dependencies:

    'taggit',
    'taggit_autosuggest',
    'djangocms_page_tags',
    
  3. Add taggit_autosuggest to urlconf:

    url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
    
  4. Synchronize the database with syncdb:

    $ python manage.py syncdb
    

    or migrate:

    $ python manage.py migrate
    
  5. That’s all!

Dependencies

you may want to install django-taggit-templatetags for better tag management in the template.