mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-06 14:17:49 +02:00
Initial gui support
This commit is contained in:
10
dcc/portal/templates/breadcrumbs.html
Normal file
10
dcc/portal/templates/breadcrumbs.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="{% url 'index' %}">Home</a></li>
|
||||
{% for p in pages %}
|
||||
<li class="breadcrumb-item{% if forloop.last %} active {% endif %}" aria-current="page">{% if forloop.last %}{{ p.name }}{% else %}
|
||||
<a href="{% url 'portal_page' p.path %}">{{ p.name }}</a>
|
||||
{% endif %}</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</nav>
|
Reference in New Issue
Block a user