2021-07-02 11:38:44 +02:00
|
|
|
{% load i18n fontawesome_5 %}
|
2021-07-02 15:21:53 +02:00
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
2021-07-21 13:27:35 +02:00
|
|
|
<a href="{% url 'home' %}">
|
|
|
|
<div class="nav-icon badge mr-5" title="{% trans 'Kompensationsverzeichnis Service Portal' %}">
|
|
|
|
<strong class="">{% trans 'KSP' %}</strong>
|
|
|
|
</div>
|
|
|
|
</a>
|
2021-07-02 14:59:37 +02:00
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
2021-07-02 15:21:53 +02:00
|
|
|
<li class=" menu-elem">
|
2021-07-02 15:08:51 +02:00
|
|
|
<a class="nav-btn nav-link" href="{% url 'home' %}">
|
2021-07-02 14:59:37 +02:00
|
|
|
{% fa5_icon 'home' %}
|
|
|
|
{% trans 'Home' %}
|
|
|
|
</a>
|
|
|
|
</li>
|
2021-07-02 15:21:53 +02:00
|
|
|
<li class=" menu-elem">
|
2021-07-20 14:05:44 +02:00
|
|
|
<a class="nav-btn nav-link" href="{% url 'intervention:index' %}">
|
2021-07-02 14:59:37 +02:00
|
|
|
{% fa5_icon 'pencil-ruler' %}
|
|
|
|
{% trans 'Intervention' %}
|
|
|
|
</a>
|
|
|
|
</li>
|
2021-07-02 15:21:53 +02:00
|
|
|
<li class=" menu-elem">
|
2021-07-21 14:17:18 +02:00
|
|
|
<a class="nav-btn nav-link" href="{% url 'compensation:index' %}">
|
2021-07-02 14:59:37 +02:00
|
|
|
{% fa5_icon 'leaf' %}
|
|
|
|
{% trans 'Compensation' %}
|
|
|
|
</a>
|
|
|
|
</li>
|
2021-07-02 15:21:53 +02:00
|
|
|
<li class=" menu-elem">
|
2021-07-23 15:23:54 +02:00
|
|
|
<a class="nav-btn nav-link" href="{% url 'compensation:acc-index' %}">
|
2021-07-02 14:59:37 +02:00
|
|
|
{% fa5_icon 'tree' %}
|
|
|
|
{% trans 'Eco-account' %}
|
|
|
|
</a>
|
|
|
|
</li>
|
2021-07-02 15:21:53 +02:00
|
|
|
<li class=" menu-elem dropdown" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
|
2021-07-02 15:08:51 +02:00
|
|
|
<a class="nav-btn nav-link">
|
2021-07-02 14:59:37 +02:00
|
|
|
{% fa5_icon 'ellipsis-v' %}
|
|
|
|
{% trans 'More' %}
|
|
|
|
</a>
|
|
|
|
<div class="dropdown-menu">
|
|
|
|
<a class="dropdown-item" href="{% url 'home' %}">{% fa5_icon 'euro-sign' %} {% trans 'EMA' %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'home' %}">{% fa5_icon 'file-import' %} {% trans 'Import...' %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'home' %}">{% fa5_icon 'file-export' %} {% trans 'Export...' %}</a>
|
|
|
|
<a class="dropdown-item" href="{% url 'home' %}">{% fa5_icon 'file-alt' %} {% trans 'Reports' %}</a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
</ul>
|
2021-07-02 15:08:51 +02:00
|
|
|
<ul class="navbar-nav ml-auto">
|
2021-07-02 15:21:53 +02:00
|
|
|
<li class=" dropdown">
|
2021-07-02 15:08:51 +02:00
|
|
|
<div class="btn nav-btn" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
|
|
|
|
{% fa5_icon 'user-circle' %}
|
|
|
|
{{ user.username }}
|
|
|
|
</div>
|
|
|
|
<div class="dropdown-menu dropdown-menu-right">
|
2021-07-08 11:07:33 +02:00
|
|
|
<a class="dropdown-item" href="{% url 'user:index' %}">{% fa5_icon 'cogs' %} {% trans 'Settings' %}</a>
|
2021-07-02 15:08:51 +02:00
|
|
|
<a class="dropdown-item" href="{% url 'logout' %}">{% fa5_icon 'sign-out-alt' %} {% trans 'Logout' %}</a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2021-07-02 13:12:38 +02:00
|
|
|
</div>
|
2021-07-02 11:38:44 +02:00
|
|
|
</nav>
|