mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
* Navbar refactoring * Fix coming soon SVG fonts * Overhaul templating and extend search to consists and books
11 lines
549 B
HTML
11 lines
549 B
HTML
{% if bookshelf_menu %}
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="bookshelfDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Bookshelf
|
|
</a>
|
|
<ul class="dropdown-menu" aria-labelledby="bookshelfDropdownMenuLink">
|
|
<li><a class="dropdown-item" href="{% url 'books' %}">Books</a></li>
|
|
</ul>
|
|
</li>
|
|
{% endif %}
|