Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darbula/djangocms-custommenu
Adds custom menu plugin to django CMS.
https://github.com/darbula/djangocms-custommenu
Last synced: 18 days ago
JSON representation
Adds custom menu plugin to django CMS.
- Host: GitHub
- URL: https://github.com/darbula/djangocms-custommenu
- Owner: darbula
- License: other
- Created: 2018-03-04T22:34:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-09T09:50:30.000Z (almost 4 years ago)
- Last Synced: 2024-10-04T12:48:03.900Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 6
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
django CMS custommenu
=====================**django CMS custommenu** is a set of plugins for `django CMS `_ that allow you to publish menu in the same way as it can be done via `menu template tags `_ hard coded in the template.
Requirements
------------* Python 2.7, 3.3 or higher
* Django 1.8 or higherInstallation
------------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.