Skip to main content

Menu helpers for django projects

Project description

django-menus is an app that provides some useful template helpers for rendering and handling menus within django projects.

To use in in your django project, it needs to be installed:

$ pip install -E /path/to/your/venv django-menus

And "menus" needs to be in your settings.INSTALLED_APPS.

tree_menu

An extension to django-mptt, this is a template that you can use to have a dynamic tree menu, where selecting items with children expands them, and selecting a leaf node follows the link. To use it, you’ll need to have mptt installed into your project as well as this package.

You use it like:

{% load mptt_tags %}

{% block tree_menu %}
  {% full_tree_for_model app_label.ModelName as menu %}
  {% include "menu/tree-menu.html" %}
{% endblock %}

If you want it to dynamically hide/show nested data, then you will want to have:

<script src="{{ STATIC_URL }}menus/js/tree-menu.js"></script>
<link rel="stylesheet" href="{{ STATIC_URL }}menus/style/tree-menu.css"
      type="text/css" media="screen" title="no title" charset="utf-8">

Somewhere in your page.

This part is currently in use in one small part of a project, and may change if I start to use it more. This README is a little light on because I haven’t touched this code in a long, long time.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-menus-1.0.2.tar.gz (6.4 kB view details)

Uploaded Source

File details

Details for the file django-menus-1.0.2.tar.gz.

File metadata

File hashes

Hashes for django-menus-1.0.2.tar.gz
Algorithm Hash digest
SHA256 1965499db5c9706e87b52b3bb6cf2da8330b2ed347778757fb86344eddc720cb
MD5 f489e9cf0ef80e95d3a957e6d45175e3
BLAKE2b-256 2844eb67f0a9a787ec0ff6d6d0aa59d75a37861b22b45b5728f8486d55614e36

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page