2022-08-15 11:42:28 +02:00
|
|
|
<nav class="navbar">
|
2022-08-18 09:30:17 +02:00
|
|
|
<input type="checkbox" class="toggler" />
|
|
|
|
<div class="hamburger">
|
|
|
|
<div></div>
|
|
|
|
</div>
|
|
|
|
<div class="fill"></div>
|
|
|
|
<div class="menu overlay">
|
|
|
|
<ul>
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'home',
|
2022-08-18 16:32:29 +02:00
|
|
|
text: 'Home'|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'about',
|
2022-08-18 16:32:29 +02:00
|
|
|
text: 'About'|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'today',
|
2022-08-18 16:32:29 +02:00
|
|
|
text: "Today's Detections"|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'spectro',
|
2022-08-18 16:32:29 +02:00
|
|
|
text: 'Live Spectrogram'|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'stats',
|
2022-08-18 16:32:29 +02:00
|
|
|
text: 'Statistics'|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
<li class="dropdown">
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'records',
|
2022-08-18 16:32:29 +02:00
|
|
|
text: 'Recordings'|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
<ul class="dropdown-content">
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
2022-08-18 16:32:29 +02:00
|
|
|
route: 'records_best',
|
|
|
|
text: 'Best Recordings'|trans
|
2022-08-18 09:30:17 +02:00
|
|
|
} %}
|
|
|
|
</ul>
|
|
|
|
</li>
|
2022-08-21 06:13:15 +02:00
|
|
|
<li class="dropdown">
|
|
|
|
<span class="dropdown-toggle">{{ "Tools"|trans }}</span>
|
|
|
|
<ul class="dropdown-content">
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'logs',
|
|
|
|
text: 'View Logs'|trans
|
|
|
|
} %}
|
|
|
|
{% include 'utils/nav-item.html.twig' with {
|
|
|
|
route: 'services_status',
|
|
|
|
text: 'Status'|trans
|
|
|
|
} %}
|
|
|
|
{% include "utils/nav-item.html.twig" with {
|
|
|
|
route: 'disks',
|
|
|
|
text: 'Disks'|trans
|
|
|
|
} %}
|
|
|
|
</ul>
|
|
|
|
</li>
|
2022-08-18 09:30:17 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
2022-08-15 11:42:28 +02:00
|
|
|
</nav>
|