AutoBreadcrumbs

Django application to add breadcrumbs to your pages
Download

AutoBreadcrumbs Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • David Thenon
  • Publisher web site:
  • https://github.com/sveetch/

AutoBreadcrumbs Tags


AutoBreadcrumbs Description

AutoBreadcrumbs is a Django app to automatically build a breadcrumb in your website like this:Home > Some page > Some child pageEach crumb displays a title with a link to represent a view, the crumb tree is determined from the urls map of your project, their titles and links are determined from the associated view entries in the breadcrumbs registry.InstallIn your settings file add AutoBreadcrumbs to your installed apps :INSTALLED_APPS = ( ... 'autobreadcrumbs', ...)Then register his context processor :TEMPLATE_CONTEXT_PROCESSORS = ( ... 'autobreadcrumbs.context_processors.AutoBreadcrumbsContext', ...)And finally, as for the autodiscover for the admin site (django.contrib.admin), you will have to add these two lines in your urls.py project :import autobreadcrumbsautobreadcrumbs.autodiscover()This is optionnally but if you don't do this, all crumbs.py file will be ignored.Product's homepage


AutoBreadcrumbs Related Software