The simple menu for Django.
Project description
The simple menu for Django.
Quickstart
Install sales_menu:
pip install sales_menu
Add sales_menu to your INSTALLED_APPS list in your settings.
sales_menu requires that the request object be available in the context when you call the {% menu %} template tag. This means that you need to ensure that your TEMPLATE_CONTEXT_PROCESSORS setting includes django.core.context_processors.request, which it doesn’t by default.
And use in template:
{% menu_tags %}
{% menu %}
{% for item in menu %}
<p>{{ item.text }}
{% if menu_item in selected_menu_path %}
— selected
{% endif %}
</p>
{% for child in item.children %}
<p>— {{ child.text }}</p>
{% endfor %}
{% endfor %}
Features
TODO
History
0.0.1 (2014-04-09)
First release on PyPI.
0.1.0 (2014-09-30)
Fixed outdated requirements
Added requires.io badge
Run test on Django 1.7
0.1.1 (2014-09-30)
Fixed run on Django 1.4
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sales_menu-0.1.1.tar.gz
(6.6 kB
view details)