mirror of
https://github.com/ceratic/MediaCollectorLibary.git
synced 2026-05-13 23:56:46 +02:00
i dont know
This commit is contained in:
@@ -42,18 +42,27 @@
|
||||
<li class="nav-item">
|
||||
<a class="nav-link {% if current_route == 'home' %}active{% endif %}" href="{{ path_for('home') }}">Dashboard</a>
|
||||
</li>
|
||||
{% if is_media_type_visible('games') %}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link {% if current_route == 'games.index' %}active{% endif %}" href="{{ path_for('games.index') }}">Games</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if is_media_type_visible('movies') %}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link {% if current_route == 'movies.index' %}active{% endif %}" href="{{ path_for('movies.index') }}">Movies</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if is_media_type_visible('tvshows') %}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link {% if current_route == 'tvshows.index' %}active{% endif %}" href="{{ path_for('tvshows.index') }}">TV Shows</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if is_media_type_visible('music') %}
|
||||
<li class="nav-item">
|
||||
<a class="nav-link {% if current_route == 'music.index' %}active{% endif %}" href="{{ path_for('music.index') }}">Music</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if is_media_type_visible('adult') %}
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle {% if current_route == 'adult.index' or current_route == 'actors.index' %}active{% endif %}" href="#" id="adultDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Adult Videos
|
||||
@@ -63,6 +72,7 @@
|
||||
<li><a class="dropdown-item {% if current_route == 'actors.index' %}active{% endif %}" href="{{ path_for('actors.index') }}">Performers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
||||
<div class="d-flex align-items-center">
|
||||
|
||||
Reference in New Issue
Block a user