flask-breadcrumbs
flask-breadcrumbs copied to clipboard
Flask-Breadcrumbs is a Flask extension that adds support for generating site breadcrumb navigation.
Package version (if known): 0.5.1 ## Describe the bug I'm wondering if something has changed within Flask-Menu that Flask-Breadcrumbs needs to take into account. ## Steps to Reproduce 1. Install...
Flask gets unhappy if routes don't return anything. :heart: Thank you for your contribution! ### Description Single-line change to the first example. Avoids `TypeError: The view function for 'index' did...
Runnning the tests on master (539c2ec6ade56c4e4341807cb0f6c26389ac7232) yields deprecation warnings due to Flask 2.2: ``` ============================================================================================================= test session starts ============================================================================================================= platform linux -- Python 3.9.16, pytest-7.2.1, pluggy-1.0.0 cachedir: .tox/py39/.pytest_cache rootdir: /home/flo/tmp/flask-breadcrumbs...
In the "simple example", the following code is shown: from flask_breadcrumbs import Breadcrumbs, register_breadcrumbs however, there is no `register_breadcrumbs` function. Instead, it should be from flask_breadcrumbs import Breadcrumbs, register_breadcrumb
There are scenarios where some flask extension might want to provide `Flask-Breadcrumbs` capabilities for its blueprints, but the user of the extension is not interested in this (e.g. if the...
Hi, I currently using Flask-Menu to make the menu of my app, and now i want to use Flask-Breadcrumbs to make it more usable but i have a problem. I...
I try to get to work routes which have more than one variable part with the dynamic list constructors (I can't find an example for that unfortunately). The application works...
Hello, I have implement Flask-Breadcrumbs menu in my flask app. but it will give me key error like "**KeyError: 'menu'**" I will show you some code: Py File from flask_breadcrumbs...
I just cannot figure out how to use the dynamic list constructor for variable rules from the example in the documentation. Could we get another example? My question that I...
Hello ! Here is my couple files of my test project: ``` python from flask import Flask from flask_menu import Menu, MenuEntryMixin from account import account from config import DefaultConfig...