actix-admin/templates/navbar.html

62 lines
2.7 KiB
HTML
Raw Normal View History

2022-08-06 21:49:52 +02:00
<nav class="navbar is-dark mb-4" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/admin/">
Actix Admin
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
{% for category, entities in entity_names %}
{% if category == "" %}
{% for menu_element in entities %}
{% if menu_element.is_custom_handler %}
<a href="/admin/{{ menu_element.link }}" hx-boost="true" hx-indicator="#loading" class="navbar-item {% if entity_name and entity_name == menu_element.name %}is-active{% endif %}">{{ menu_element.name }}</a>
{% else %}
<a href="/admin/{{ menu_element.link }}/list" hx-boost="true" hx-indicator="#loading" class="navbar-item {% if entity_name and entity_name == menu_element.name %}is-active{% endif %}">{{ menu_element.name | title }}</a>
{% endif %}
{%- endfor %}
{% else %}
<div class="navbar-item has-dropdown is-hoverable">
2022-09-13 15:45:20 +02:00
<a class="navbar-link {% if entity_name and entity_name in entities %}is-active{% endif %}">
{{ category }}
</a>
<div class="navbar-dropdown">
{% for menu_element in entities %}
{% if menu_element.is_custom_handler %}
<a href="/admin/{{ menu_element.link }}" hx-boost="true" hx-indicator="#loading" class="navbar-item {% if entity_name and entity_name == menu_element.name %}is-active{% endif %}">{{ menu_element.name }}</a>
{% else %}
<a href="/admin/{{ menu_element.link }}/list" hx-boost="true" hx-indicator="#loading" class="navbar-item {% if entity_name and entity_name == menu_element.name %}is-active{% endif %}">{{ menu_element.name | title }}</a>
{% endif %}
{%- endfor %}
</div>
</div>
{% endif %}
2022-08-06 21:49:52 +02:00
{%- endfor %}
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
{% if enable_auth %}
{% if user_is_logged_in %}
<a href="{{ logout_link }}" hx-boost="true" hx-indicator="#loading" class="button is-light">
2022-08-06 21:49:52 +02:00
Log out
2022-08-04 09:21:40 +02:00
</a>
2022-08-06 21:49:52 +02:00
{% else %}
<a href="{{ login_link }}" hx-boost="true" hx-indicator="#loading" class="button is-light">
2022-08-06 21:49:52 +02:00
Log in
2022-08-04 09:21:40 +02:00
</a>
2022-08-06 21:49:52 +02:00
{% endif %}
{% endif %}
2022-08-04 09:21:40 +02:00
</div>
2022-08-06 21:49:52 +02:00
</div>
</div>
</div>
</nav>