wip
This commit is contained in:
parent
66fe31eabe
commit
67dae6f5e4
7 changed files with 490 additions and 23 deletions
23
app/templates/components/breadcrumbs.html
Normal file
23
app/templates/components/breadcrumbs.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<div class="page-header d-print-none">
|
||||
<div class="container-xl">
|
||||
<div class="row g-2 align-items-center">
|
||||
<div class="col">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="{{ url_for('dashboard.dashboard_home') }}">Dashboard</a></li>
|
||||
{% for crumb in breadcrumbs %}
|
||||
{% if loop.last %}
|
||||
<li class="breadcrumb-item active" aria-current="page">{{ crumb.title }}</li>
|
||||
{% else %}
|
||||
<li class="breadcrumb-item"><a href="{{ crumb.url }}">{{ crumb.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</nav>
|
||||
<h2 class="page-title">
|
||||
{{ title }}
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue