bootstrap-breadcrumbs
bootstrap-breadcrumbs copied to clipboard
Labels are not links
Hi!
The labels won't render as clickable links (<a>).
This is the template:
{% load django_bootstrap_breadcrumbs %}
{% block breadcrumbs %}
{% clear_breadcrumbs %}
{% breadcrumb "Home" "app:index" %}
{% endblock %}
{% block content %}
{% render_breadcrumbs %}
...
{% endblock %}
This is the app url:
...
path('', IndexView.as_view(), name='index'),
...