Metadata-Version: 2.0
Name: djangocms-custommenu
Version: 1.0.2
Summary: Adds custom menu plugin to django CMS.
Home-page: https://github.com/darbula/djangocms-custommenu
Author: Damir Arbula
Author-email: damir.arbula@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: django-cms (>=3.3.1)
Requires-Dist: djangocms-attributes-field (>=0.1.1)

django CMS custommenu
=====================


**django CMS custommenu** is a set of plugins for `django CMS <http://django-cms.org>`_ that allow you to publish menu in the same way as it can be done via `menu template tags <http://docs.django-cms.org/en/latest/reference/navigation.html>`_ hard coded in the template.


Requirements
------------

* Python 2.7, 3.3 or higher
* Django 1.8 or higher


Installation
------------

For a manual install:

* run ``pip install djangocms-custommenu``
* add ``djangocms_custommenu`` to your ``INSTALLED_APPS``
* run ``python manage.py migrate djangocms_custommenu``


Configuration
-------------

You are encouraged to adapt and override provided templates to your project's requirements and optionally provide additional template choices by adding a ``DJANGOCMS_CUSTOMMENU_TEMPLATES`` or ``DJANGOCMS_CUSTOMMENU_AUTOMENU_TEMPLATES`` settings::

    DJANGOCMS_CUSTOMMENU_TEMPLATES = [
        ('feature', _('Featured Version')),
    ]

You'll need to create the appropriate folders and files inside ``templates/djangocms_custommenu/`` otherwise you will get a *template does not exist* error.


