Skip to main content

Dynamic navigation menu generation for django.

Project description

# django navigen
#### Brandon R. Stoner <monokrome@monokro.me>

## What is this?

This application provides components that simplify the creation of dynamic navigation menus in django. You can use to to have django automatically generate menus with menu items that reflect the permissions of the currently logged in user.

## Getting started

Just like other django apps, django-navigen is really easy to get started with. Simply install it with:

python setup.py install

After this is installed, open up your project's settings.py file and add 'navigen' to your INSTALLED_APPS.

INSTALLED_APPS = (
# Your other apps listed here
'navigen',
)

Now, as a final step - have django synchronize your database:

./manage.py syncdb

## How does this work?

You should now have all that you need to use django-navigen within your application. In order to test this it is good to know the terminology used by the navigation system or you might be confused or think that the application is overly complicated. However, remember that django-navigen was made with the following goals in mind:

* All menus are generated dynamically
* Menu items reflect the context of the user, and their related permissions. Users shouldn't see what they can't access.
* The application should support as many dynamic menus as required by the design out-of-the-box.
* Drop-down menus should be easily created without any extra code.

These are established by organizing each menu as a *"navigation tree"*, and relating each tree's top-level *"menu items"* to a navigation tree. A tree is accessed by your template by it's *"access name"*, and multiple trees can make use of the same *"menu item"* when necessary.

Trees are represented in django's ORM with the **NavigationTree** model. This model is fairly simple, and only contains the following properties:

* name - The human readable name for this specific **NavigationTree** instance.
* access_name - The name that will be supplied as a string to access this tree.

Leaves in the tree are represented by the **NavigationItem** model which describes a single link that can be assigned to a tree, and can also be assigned to a parent menu item for dropdowns.

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-navigen-0.1.1-hotfix.tar.gz (4.9 kB view details)

Uploaded Source

File details

Details for the file django-navigen-0.1.1-hotfix.tar.gz.

File metadata

File hashes

Hashes for django-navigen-0.1.1-hotfix.tar.gz
Algorithm Hash digest
SHA256 70ab5dda44bf62ce4504a3bcdf81717013bf238fbd58083e45651464a94b90c0
MD5 4ddc3df6ab76dbccc52fd98a67d6836a
BLAKE2b-256 be877016152d609020bef3562a76e78ee499cc9ec1cf2d4c2c111e3bdff66576

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