i dont know

This commit is contained in:
Lars Behrends
2025-10-20 23:40:55 +02:00
parent 552bb72370
commit 73d8441787
33 changed files with 3079 additions and 69 deletions

View File

@@ -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">