{% extends "lizard_ui/lizardbase.html" %} {% block title %}Breadcrumbs{% endblock %} {% block content %}

In your view, include the keyword 'crumbs' in your dictionary van values to add to the template context. When left out, you simply see no breadcrumbs.

The crumbs contain a list of dictionaries, where each dictionary represent a single item in the breadcrumb list.

The dictionary has the following keys:

See the view in views.py to see how it works.

Tip: add an option to your view called "crumbs_prepend". If crumbs_prepend is used, take this as your base, else take something like 'home'.

{% endblock %}