group menu
This commit is contained in:
parent
56f60f261a
commit
566138dedc
@ -97,6 +97,33 @@ body {
|
||||
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 */
|
||||
ul {
|
||||
list-style-type: none;
|
||||
|
||||
@ -50,15 +50,24 @@
|
||||
</header>
|
||||
<div class="wrapper">
|
||||
{% if admin_enabled %}
|
||||
<div class="admin-nav">
|
||||
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
||||
<span> | </span>
|
||||
<a href="{{ url_for('connections') }}">Verbindungen</a>
|
||||
<span> | </span>
|
||||
<a href="{{ url_for('dashboard') }}">Auswertung</a>
|
||||
<span> | </span>
|
||||
<a href="{{ url_for('folder_secret_config_editor') }}" id="edit-folder-config" >Ordnerkonfiguration</a>
|
||||
</div>
|
||||
<div class="admin-nav">
|
||||
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
||||
<span> | </span>
|
||||
<a href="{{ url_for('folder_secret_config_editor') }}" id="edit-folder-config">Ordnerkonfiguration</a>
|
||||
<span> | </span>
|
||||
<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>
|
||||
{% endif %}
|
||||
|
||||
{% if features %}
|
||||
|
||||
@ -33,17 +33,20 @@
|
||||
<span> | </span>
|
||||
<a href="{{ url_for('mylinks') }}">Meine Links</a>
|
||||
<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>
|
||||
<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>
|
||||
{% endif %}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user