Metadata-Version: 1.1
Name: djangocms-page-tags
Version: 0.3.0
Summary: Tagged pages for django CMS 3
Home-page: https://github.com/nephila/djangocms-page-tags
Author: Iacopo Spalletti
Author-email: i.spalletti@nephila.it
License: BSD
Description: ===================
        djangocms-page-tags
        ===================
        
        .. image:: https://badge.fury.io/py/djangocms-page-tags.png
            :target: http://badge.fury.io/py/djangocms-page-tags
            
        .. image:: https://travis-ci.org/nephila/djangocms-page-tags.png?branch=master
                :target: https://travis-ci.org/nephila/djangocms-page-tags
        
        .. image:: http://img.shields.io/pypi/dm/djangocms-page-tags.png
                :target: https://pypi.python.org/pypi/djangocms-page-tags?version=latest
        
        .. image:: https://coveralls.io/repos/nephila/djangocms-page-tags/badge.png?branch=master
                :target: https://coveralls.io/r/nephila/djangocms-page-tags?branch=master
        
        
        Tagged pages for django CMS 3
        
        
        Quickstart
        ----------
        
        Install djangocms-page-tags::
        
            pip install djangocms-page-tags
        
        Then add it to INSTALLED_APPS along with its dependencies::
        
            'taggit',
            'taggit_autosuggest',
            'djangocms_page_tags',
        
        Add `taggit_autosuggest` to urlconf::
        
            url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
        
        
        Execute migration or syncdb::
        
            $ python manage.py syncdb
        
        or::
        
            $ python manage.py migrate
        
        
        Usage
        -----
        
        You will find two new items in the toolbar Page menu:
        
        * Title tags (per language)
        * Page tags (global)
        
        These items allows to add tags to ``Title`` and ``Page`` instances, respectively
        
        Templatetags
        ------------
        
        ``djangocms-page-tags`` allows showing tags using four templatetags
        
        * ``include_page_tags``
        * ``include_title_tags``
        * ``page_tags``
        * ``title_tags``
        
        Documentation
        -------------
        
        For further documentation see http://djangocms-page-tags.readthedocs.org/
        
        
        .. image:: https://d2weczhvl823v0.cloudfront.net/nephila/djangocms-page-tags/trend.png
           :alt: Bitdeli badge
           :target: https://bitdeli.com/free
        
        
        
        
        
        History
        -------
        
        0.3.0 (2014-04-20)
        ++++++++++++++++++
        
        * Support for django CMS 3.0 final
        
        0.2.1 (2014-03-29)
        ++++++++++++++++++
        
        * Support for django CMS 3.0 RC1
        * Add verbose description
        
        0.2.0 (2014-02-02)
        ++++++++++++++++++
        
        * Fix for django CMS 3 develop update
        
        0.1.4 (2014-01-26)
        ++++++++++++++++++
        
        * Metadata cleanup
        
        0.1.3 (2014-01-22)
        ++++++++++++++++++
        
        * Put toolbar menu items in a submenu
        
        0.1.2 (2014-01-16)
        ++++++++++++++++++
        
        * Documentation update
        
        0.1.1 (2014-01-16)
        ++++++++++++++++++
        
        * Add transifex support
        
        0.1.0 (2014-01-15)
        ++++++++++++++++++
        
        * Experimental release.
Keywords: djangocms-page-tags
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
