Skip to main content

Navigation on the site using flat pages, URL patterns and Views

Project description

  • install using pip:

pip install django-site-navigation
  • add “site_navigation” to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'site_navigation'
)
  • add “site_navigation.context_processors.getNavigationProperties” to your TEMPLATE_CONTEXT_PROCESSORS:

TEMPLATE_CONTEXT_PROCESSORS = (
    ...
    'site_navigation.context_processors.getNavigationProperties'
)
  • add “site_navigation.middleware.RedirectMiddleware” to your MIDDLEWARE_CLASSES:

MIDDLEWARE_CLASSES = (
    ...
    'site_navigation.middleware.RedirectMiddleware'
)
  • add in urls.py:

from navigation.utils import addUrl
urlpatterns += addUrl('default_page.html')
  • create table:

python ./manage.py migrate
  • create templates: default_page.html

{% load site-navigation %}
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <meta name="description" content="{{ NAVIGATION_SUBDIVISION.description|default_if_none:'' }}">
    <meta name="keywords" content="{{ NAVIGATION_SUBDIVISION.keywords|default_if_none:'' }}">
    <title>
        <title>
            {% if NAVIGATION_SUBDIVISION.title %}{{ NAVIGATION_SUBDIVISION.title }}
            {% elif NAVIGATION_SUBDIVISION.pageTitle %} {{ NAVIGATION_SUBDIVISION.pageTitle }}
            {% elif NAVIGATION_SUBDIVISION.name %}{{ NAVIGATION_SUBDIVISION.name }}
            {% else %}{{ SITE_OPTIONS.title }}{% endif %}
        </title>
    </title>
</head>
<body>

{% breadcrumbs %}

<h1>
    {% if NAVIGATION_SUBDIVISION.pageTitle %}
        {{ NAVIGATION_SUBDIVISION.pageTitle }}
    {% else %}
        {{ NAVIGATION_SUBDIVISION.name }}
    {% endif %}
</h1>


{% block beforecontent %}
    {{ NAVIGATION_SUBDIVISION.before|default_if_none:''|safe }}
{% endblock %}

{% block content %}{% endblock %}

{% block aftercontent %}
    {{ NAVIGATION_SUBDIVISION.after|default_if_none:''|safe }}
{% endblock %}

</body>
</html>

menu.html

{% for sub in subdivisions|dictsortreversed:"priority" %}
    <li {% if sub == NAVIGATION_SUBDIVISION %} class="active" {% endif %}>
        <a href="{{ sub.getUrl }}" >
            {{ sub }}
        </a>
    </li>
{% endfor %}

breadcrumbs.html

<ul>
    <li><a href="/">Home</a></li>
    {% for s in NAVIGATION_BRANCH %}
        <li>{% if not forloop.last %}
                <a href="{{ s.getUrl }}">{{ s.name }}</a>
             {% else %}
                {{ s.name }}
             {% endif %}
        </li>
    {% endfor %}
</ul>

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-site-navigation-0.0.2.tar.gz (1.9 kB view details)

Uploaded Source

File details

Details for the file django-site-navigation-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-site-navigation-0.0.2.tar.gz
Algorithm Hash digest
SHA256 401d9c32eade0b41f9821dd09942e1e2ab86f617ec9caa207216b0c06df4ecf3
MD5 83440d44e5651aa61219d625f945da9d
BLAKE2b-256 ba3412ebd31b634af0e8ec05862e444cd1f9210a66bc61d32588ea68f5318c4d

See more details on using hashes here.

Provenance

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