===================
djangocms-page-tags
===================
|Gitter| |PyPiVersion| |PyVersion| |GAStatus| |TestCoverage| |CodeClimate| |License|
Tagged pages for django CMS 3
Python: 3.7, 3.8, 3.9, 3.10
Django: 2.2, 3.2
django CMS: 3.7 - 3.10
**********
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::
path("taggit_autosuggest", include("taggit_autosuggest.urls")),
Execute migration::
$ 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 https://djangocms-page-tags.readthedocs.io/
.. |Gitter| image:: https://img.shields.io/badge/GITTER-join%20chat-brightgreen.svg?style=flat-square
:target: https://gitter.im/nephila/applications
:alt: Join the Gitter chat
.. |PyPiVersion| image:: https://img.shields.io/pypi/v/djangocms-page-sitemap.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-page-sitemap
:alt: Latest PyPI version
.. |PyVersion| image:: https://img.shields.io/pypi/pyversions/djangocms-page-sitemap.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-page-sitemap
:alt: Python versions
.. |GAStatus| image:: https://github.com/nephila/djangocms-redirect/workflows/Tox%20tests/badge.svg
:target: https://github.com/nephila/djangocms-redirect
:alt: Latest CI build status
.. |TestCoverage| image:: https://img.shields.io/coveralls/nephila/djangocms-page-sitemap/master.svg?style=flat-square
:target: https://coveralls.io/r/nephila/djangocms-page-sitemap?branch=master
:alt: Test coverage
.. |License| image:: https://img.shields.io/github/license/nephila/djangocms-page-sitemap.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-page-sitemap/
:alt: License
.. |CodeClimate| image:: https://codeclimate.com/github/nephila/djangocms-page-sitemap/badges/gpa.svg?style=flat-square
:target: https://codeclimate.com/github/nephila/djangocms-page-sitemap
:alt: Code Climate
.. :changelog:
*******
History
*******
.. towncrier release notes start
1.1.0 (2023-05-08)
==================
Features
--------
- Update GH actions / linting configuration (#40)
1.0.0 (2022-08-27)
==================
Bugfixes
--------
- Add support for Django 3.2 / django CMS 3.10 (#33)
- Skip creating toolbar item in page types (#36)
0.9.0 (2020-12-05)
==================
Features
--------
- Add support for Python 3.9 (#29)
- migrate from travis, drop Python 2/Django Cms 3.6 support (#10210)
0.8.0 (2019-12-27)
==================
* Add Django 2.2
* Add django CMS 3.7
* Add Python 3.7
* Drop compatibility with django CMS < 3.6
0.7.0 (2019-08-22)
==================
* Drop compatibility with Django < 1.11
* Drop compatibility with Python 3 < 3.5
0.6.2 (2019-03-09)
==================
* Add Django 2.0, 2.1 support
* Add django CMS 3.6 support
0.6.1 (2018-03-29)
==================
* Properly set migration dependencies
* Improve compatibility with django CMS 3.5
* Fix issues with tox on travis
0.6.0 (2017-12-30)
==================
* Add Django 1.11 support
* Drop django CMS 3.2, 3.3
0.5.0 (2016-12-02)
==================
* Add Django 1.10 support
* Add support for django CMS 3.3, 3.4
* Drop Django 1.7 and below
* Drop django CMS 3.1 and below
0.4.2 (2016-01-08)
==================
* Fix handling of pages in non existing languages
0.4.1 (2015-10-03)
==================
* Add support for django CMS 3.2
* Add support for Django 1.8
* Update translation
* PEP-8 / isort code cleanup
0.4.0 (2015-06-29)
==================
* Add support for django CMS 3.1
* Add support for Django 1.7
* Use djangocms-helper for testing
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.
Raw data
{
"_id": null,
"home_page": "https://github.com/nephila/djangocms-page-tags",
"name": "djangocms-page-tags",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "djangocms-page-tags",
"author": "Iacopo Spalletti",
"author_email": "i.spalletti@nephila.digital",
"download_url": "https://files.pythonhosted.org/packages/26/98/b6c7434e2aeb564192aa70237efb8bab44b24166196b687537c9396b80eb/djangocms-page-tags-1.1.0.tar.gz",
"platform": null,
"description": "===================\ndjangocms-page-tags\n===================\n\n|Gitter| |PyPiVersion| |PyVersion| |GAStatus| |TestCoverage| |CodeClimate| |License|\n\nTagged pages for django CMS 3\n\nPython: 3.7, 3.8, 3.9, 3.10\n\nDjango: 2.2, 3.2\n\ndjango CMS: 3.7 - 3.10\n\n**********\nQuickstart\n**********\n\nInstall djangocms-page-tags::\n\n pip install djangocms-page-tags\n\nThen add it to INSTALLED_APPS along with its dependencies::\n\n \"taggit\",\n \"taggit_autosuggest\",\n \"djangocms_page_tags\",\n\nAdd ``taggit_autosuggest`` to urlconf::\n\n path(\"taggit_autosuggest\", include(\"taggit_autosuggest.urls\")),\n\nExecute migration::\n\n $ python manage.py migrate\n\n*****\nUsage\n*****\n\nYou will find two new items in the toolbar Page menu:\n\n* Title tags (per language)\n* Page tags (global)\n\nThese items allows to add tags to ``Title`` and ``Page`` instances, respectively\n\n************\nTemplatetags\n************\n\n``djangocms-page-tags`` allows showing tags using four templatetags\n\n* ``include_page_tags``\n* ``include_title_tags``\n* ``page_tags``\n* ``title_tags``\n\n*************\nDocumentation\n*************\n\nFor further documentation see https://djangocms-page-tags.readthedocs.io/\n\n.. |Gitter| image:: https://img.shields.io/badge/GITTER-join%20chat-brightgreen.svg?style=flat-square\n :target: https://gitter.im/nephila/applications\n :alt: Join the Gitter chat\n\n.. |PyPiVersion| image:: https://img.shields.io/pypi/v/djangocms-page-sitemap.svg?style=flat-square\n :target: https://pypi.python.org/pypi/djangocms-page-sitemap\n :alt: Latest PyPI version\n\n.. |PyVersion| image:: https://img.shields.io/pypi/pyversions/djangocms-page-sitemap.svg?style=flat-square\n :target: https://pypi.python.org/pypi/djangocms-page-sitemap\n :alt: Python versions\n\n.. |GAStatus| image:: https://github.com/nephila/djangocms-redirect/workflows/Tox%20tests/badge.svg\n :target: https://github.com/nephila/djangocms-redirect\n :alt: Latest CI build status\n\n.. |TestCoverage| image:: https://img.shields.io/coveralls/nephila/djangocms-page-sitemap/master.svg?style=flat-square\n :target: https://coveralls.io/r/nephila/djangocms-page-sitemap?branch=master\n :alt: Test coverage\n\n.. |License| image:: https://img.shields.io/github/license/nephila/djangocms-page-sitemap.svg?style=flat-square\n :target: https://pypi.python.org/pypi/djangocms-page-sitemap/\n :alt: License\n\n.. |CodeClimate| image:: https://codeclimate.com/github/nephila/djangocms-page-sitemap/badges/gpa.svg?style=flat-square\n :target: https://codeclimate.com/github/nephila/djangocms-page-sitemap\n :alt: Code Climate\n\n.. :changelog:\n\n*******\nHistory\n*******\n\n.. towncrier release notes start\n\n1.1.0 (2023-05-08)\n==================\n\nFeatures\n--------\n\n- Update GH actions / linting configuration (#40)\n\n\n1.0.0 (2022-08-27)\n==================\n\nBugfixes\n--------\n\n- Add support for Django 3.2 / django CMS 3.10 (#33)\n- Skip creating toolbar item in page types (#36)\n\n\n0.9.0 (2020-12-05)\n==================\n\nFeatures\n--------\n\n- Add support for Python 3.9 (#29)\n- migrate from travis, drop Python 2/Django Cms 3.6 support (#10210)\n\n0.8.0 (2019-12-27)\n==================\n\n* Add Django 2.2\n* Add django CMS 3.7\n* Add Python 3.7\n* Drop compatibility with django CMS < 3.6\n\n\n0.7.0 (2019-08-22)\n==================\n\n* Drop compatibility with Django < 1.11\n* Drop compatibility with Python 3 < 3.5\n\n0.6.2 (2019-03-09)\n==================\n\n* Add Django 2.0, 2.1 support\n* Add django CMS 3.6 support\n\n0.6.1 (2018-03-29)\n==================\n\n* Properly set migration dependencies\n* Improve compatibility with django CMS 3.5\n* Fix issues with tox on travis\n\n0.6.0 (2017-12-30)\n==================\n\n* Add Django 1.11 support\n* Drop django CMS 3.2, 3.3\n\n0.5.0 (2016-12-02)\n==================\n\n* Add Django 1.10 support\n* Add support for django CMS 3.3, 3.4\n* Drop Django 1.7 and below\n* Drop django CMS 3.1 and below\n\n0.4.2 (2016-01-08)\n==================\n\n* Fix handling of pages in non existing languages\n\n0.4.1 (2015-10-03)\n==================\n\n* Add support for django CMS 3.2\n* Add support for Django 1.8\n* Update translation\n* PEP-8 / isort code cleanup\n\n0.4.0 (2015-06-29)\n==================\n\n* Add support for django CMS 3.1\n* Add support for Django 1.7\n* Use djangocms-helper for testing\n\n0.3.0 (2014-04-20)\n==================\n\n* Support for django CMS 3.0 final\n\n0.2.1 (2014-03-29)\n==================\n\n* Support for django CMS 3.0 RC1\n* Add verbose description\n\n0.2.0 (2014-02-02)\n==================\n\n* Fix for django CMS 3 develop update\n\n0.1.4 (2014-01-26)\n==================\n\n* Metadata cleanup\n\n0.1.3 (2014-01-22)\n==================\n\n* Put toolbar menu items in a submenu\n\n0.1.2 (2014-01-16)\n==================\n\n* Documentation update\n\n0.1.1 (2014-01-16)\n==================\n\n* Add transifex support\n\n0.1.0 (2014-01-15)\n==================\n\n* Experimental release.\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "Tagged pages for django CMS 3",
"version": "1.1.0",
"project_urls": {
"Documentation": "https://djangocms-page-tags.readthedocs.io/",
"Homepage": "https://github.com/nephila/djangocms-page-tags"
},
"split_keywords": [
"djangocms-page-tags"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e6ad3803df6090226cc369699b42f469d241b6bafb406154288da5f51401874c",
"md5": "349b5b97b5ec7079e9818caf7c6062ba",
"sha256": "4601a3c156c0a30f388d784119bde40c613c2b28b0768e37baeae131f5d03383"
},
"downloads": -1,
"filename": "djangocms_page_tags-1.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "349b5b97b5ec7079e9818caf7c6062ba",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.7",
"size": 25898,
"upload_time": "2023-05-08T18:10:58",
"upload_time_iso_8601": "2023-05-08T18:10:58.168100Z",
"url": "https://files.pythonhosted.org/packages/e6/ad/3803df6090226cc369699b42f469d241b6bafb406154288da5f51401874c/djangocms_page_tags-1.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2698b6c7434e2aeb564192aa70237efb8bab44b24166196b687537c9396b80eb",
"md5": "1a55d1605c4b0c50086233121d817943",
"sha256": "e0d473ee640cf732a5f0b3e25960b3683c418d6bdf2d4e8c5b4c9261d0a0dc13"
},
"downloads": -1,
"filename": "djangocms-page-tags-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "1a55d1605c4b0c50086233121d817943",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 20760,
"upload_time": "2023-05-08T18:10:59",
"upload_time_iso_8601": "2023-05-08T18:10:59.564079Z",
"url": "https://files.pythonhosted.org/packages/26/98/b6c7434e2aeb564192aa70237efb8bab44b24166196b687537c9396b80eb/djangocms-page-tags-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-05-08 18:10:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "nephila",
"github_project": "djangocms-page-tags",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [],
"tox": true,
"lcname": "djangocms-page-tags"
}