https://github.com/mfcovington/djangocms-lab-tags
A Django app for consolidating content tagged with django-taggit tags within a Django site with django CMS-specific features
https://github.com/mfcovington/djangocms-lab-tags
Last synced: over 1 year ago
JSON representation
A Django app for consolidating content tagged with django-taggit tags within a Django site with django CMS-specific features
- Host: GitHub
- URL: https://github.com/mfcovington/djangocms-lab-tags
- Owner: mfcovington
- Created: 2015-08-12T08:46:29.000Z (almost 11 years ago)
- Default Branch: develop
- Last Pushed: 2015-08-13T06:15:34.000Z (almost 11 years ago)
- Last Synced: 2025-02-14T15:15:30.470Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
******************
djangocms-lab-tags
******************
``djangocms-lab-tags`` is a Django app for consolidating content tagged with ``django-taggit`` tags within a Django site with django CMS-specific features.
Source code is available on GitHub at `mfcovington/djangocms-lab-tags `_. Information about ``django-taggit`` is available on `GitHub `_ and `Read the Docs `_.
.. contents:: :local:
.. Installation
.. ============
.. **PyPI**
.. .. code-block:: sh
.. pip install djangocms-lab-tags
.. **GitHub**
.. .. code-block:: sh
.. pip install https://github.com/mfcovington/djangocms-lab-tags/releases/download/0.1.4-dev1/djangocms-lab-tags-0.1.4-dev1.tar.gz
Configuration
=============
Do the following in ``settings.py``:
- Add ``cms_lab_tags`` and its dependencies to ``INSTALLED_APPS``:
.. code-block:: python
INSTALLED_APPS = (
...
'taggit',
'cms_lab_tags',
)
.. Migrations
.. ==========
.. Create and perform ``cms_lab_tags`` migrations:
.. .. code-block:: sh
.. python manage.py makemigrations cms_lab_tags
.. python manage.py migrate
Usage
=====
- Start the development server:
.. code-block:: sh
python manage.py runserver
- Visit: ``http://127.0.0.1:8000/``
- Create a CMS page and then:
- Attach the ``Tags App`` under ``Advanced Settings`` for the page, **OR**
- Insert the ``Tag Plugin`` into a placeholder field.
*Version 0.0.0*