bootstrap-breadcrumbs icon indicating copy to clipboard operation
bootstrap-breadcrumbs copied to clipboard

Labels are not links

Open ariel-m-s opened this issue 6 years ago • 0 comments

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

ariel-m-s avatar Aug 08 '19 02:08 ariel-m-s