bootstrap-breadcrumbs
bootstrap-breadcrumbs copied to clipboard
Django template tags for easy breadcrumbs using twitter bootstrap css classes or custom template
Using django-bootstrap-breadcrumbs 0.9.2 with Django 3.0.7, I get the following deprecation warning: ```python lib/python3.8/site-packages/django_bootstrap_breadcrumbs/templatetags/django_bootstrap_breadcrumbs.py:151: RemovedInDjango40Warning: smart_text() is deprecated in favor of smart_str(). links.append((url, smart_text(label) if label else label)) ``` Checking...
Fixes https://github.com/prymitive/bootstrap-breadcrumbs/issues/64 My test suite has started throwing deprecation warnings about this being fully removed in Django 4.0. `smart_str()` can be viewed here: https://github.com/django/django/blob/master/django/utils/encoding.py#L19
by default, the `{% render_breadcrumbs %}` rendered the html breadcrumb like this below example: ```html Home Quizzes Quiz Python Programming ``` but, for some case I need to add new...
Only Django default words like 'home', 'user' are translated while using: `{% breadcrumb "Home" "/" %} {% breadcrumb "User" "users" %}` But any word not recognized (by default) by Django...
Hi! The labels won't render as clickable links (``````). This is the template: ```python {% load django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {% clear_breadcrumbs %} {% breadcrumb "Home" "app:index" %}...