group menu
This commit is contained in:
parent
56f60f261a
commit
566138dedc
@ -97,6 +97,33 @@ body {
|
|||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-nav .dropdown-toggle {
|
||||||
|
color: #ccc;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-nav .dropdown-toggle::after {
|
||||||
|
border-top-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-nav .dropdown-menu {
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
border-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-nav .dropdown-item {
|
||||||
|
color: #333;
|
||||||
|
padding-left: 14px;
|
||||||
|
padding-right: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admin-nav .dropdown-item:hover,
|
||||||
|
.admin-nav .dropdown-item:focus {
|
||||||
|
background-color: #e6e6e6;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
/* List Styles */
|
/* List Styles */
|
||||||
ul {
|
ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
|||||||
@ -50,15 +50,24 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
{% if admin_enabled %}
|
{% if admin_enabled %}
|
||||||
<div class="admin-nav">
|
<div class="admin-nav">
|
||||||
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
||||||
<span> | </span>
|
<span> | </span>
|
||||||
<a href="{{ url_for('connections') }}">Verbindungen</a>
|
<a href="{{ url_for('folder_secret_config_editor') }}" id="edit-folder-config">Ordnerkonfiguration</a>
|
||||||
<span> | </span>
|
<span> | </span>
|
||||||
<a href="{{ url_for('dashboard') }}">Auswertung</a>
|
<div class="dropdown d-inline-block">
|
||||||
<span> | </span>
|
<a class="dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<a href="{{ url_for('folder_secret_config_editor') }}" id="edit-folder-config" >Ordnerkonfiguration</a>
|
Auswertungen
|
||||||
</div>
|
</a>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('dashboard') }}">Dashbord</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('connections') }}">Verbindungen</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('file_access') }}">Dateizugriffe</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('songs_dashboard') }}">Wiederholungen</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('search_db_analyzer') }}">Dateiindex Analyse</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if features %}
|
{% if features %}
|
||||||
|
|||||||
@ -33,17 +33,20 @@
|
|||||||
<span> | </span>
|
<span> | </span>
|
||||||
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
||||||
<span> | </span>
|
<span> | </span>
|
||||||
<a href="{{ url_for('connections') }}">Verbindungen</a>
|
|
||||||
<span> | </span>
|
|
||||||
<a href="{{ url_for('dashboard') }}">Dashbord</a>
|
|
||||||
<span> | </span>
|
|
||||||
<a href="{{ url_for('file_access') }}">Dateizugriffe</a>
|
|
||||||
<span> | </span>
|
|
||||||
<a href="{{ url_for('songs_dashboard') }}">Wiederholungen</a>
|
|
||||||
<span> | </span>
|
|
||||||
<a href="{{ url_for('folder_secret_config_editor') }}" id="edit-folder-config">Ordnerkonfiguration</a>
|
<a href="{{ url_for('folder_secret_config_editor') }}" id="edit-folder-config">Ordnerkonfiguration</a>
|
||||||
<span> | </span>
|
<span> | </span>
|
||||||
<a href="{{ url_for('search_db_analyzer') }}">Dateiindex Analyse</a>
|
<div class="dropdown d-inline-block">
|
||||||
|
<a class="dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
|
Auswertungen
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('dashboard') }}">Dashbord</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('connections') }}">Verbindungen</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('file_access') }}">Dateizugriffe</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('songs_dashboard') }}">Wiederholungen</a></li>
|
||||||
|
<li><a class="dropdown-item" href="{{ url_for('search_db_analyzer') }}">Dateiindex Analyse</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user