prymitive / bootstrap-breadcrumbs

Django template tags for easy breadcrumbs using twitter bootstrap css classes or custom template
django-bootstrap-breadcrumbs.readthedocs.org
MIT License
93 stars 48 forks source link

Labels are not links #58

Open ariel-m-s opened 5 years ago

ariel-m-s commented 5 years ago

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'),
...