Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
django-blog-lotus
v0.9.7
Logo
django-blog-lotus
v0.9.7
  • Install
  • Settings
  • Contents
  • Internationalization, localization and translation
  • Publication criterias and visibility
  • Medias
  • Breadcrumbs
  • API
  • Sitemap XML
  • Layout
  • Permissions
  • References
    • Models
    • Managers
    • Views
    • Forms
    • Model admins
    • Template tags
    • Choices
    • Responses
    • Utilities
    • Factories
    • Tests
    • Contrib
  • Development
  • Changelog
  • Migrations
Back to top
View this page
Edit this page

Breadcrumbs¶

Every page include breadcrumbs from starting site entry point (commonly the homepage) to the current page if django-view-breadcrumbs has been installed as explained from Install document, read the django-view-breadcrumbs documentation for more informations on its available features and settings.

Note

View crumb titles can be changed from setting LOTUS_ENABLE_TAG_INDEX_VIEW except those ones which use an object title as their crumb title like the detail views.

Install¶

First you need to install Lotus with extra requirement for breadcrumbs:

pip install django-blog-lotus[breadcrumbs]

Then enable it in Django enabled applications before the line for Lotus (in any order with API):

INSTALLED_APPS = (
    ...
    "view_breadcrumbs",
    ...
    "lotus",
)
Next
API
Previous
Medias
Copyright © 2021-2026, Emencia
Made with Sphinx and @pradyunsg's Furo
On this page
  • Breadcrumbs
    • Install