Files
gogo-telefon/gogo/templates/dashboard/_nav.html

20 lines
1.1 KiB
HTML
Raw Normal View History

<header>
<div class="logo">Gogo <span>Telefon</span></div>
<nav>
<a href="/dash" class="{{ 'active' if active=='requests' }}">Zahtjevi</a>
<a href="/dash/calls" class="{{ 'active' if active=='calls' }}">Pozivi</a>
<a href="/dash/chats" class="{{ 'active' if active=='chats' }}">Chat</a>
<a href="/dash/usage" class="{{ 'active' if active=='usage' }}">Potrošnja</a>
<a href="/dash/settings" class="{{ 'active' if active=='settings' }}">Salon</a>
<a href="/dash/services" class="{{ 'active' if active=='services' }}">Usluge</a>
<a href="/dash/scheduling" class="{{ 'active' if active=='scheduling' }}">Kalendar</a>
<a href="/dash/telephony" class="{{ 'active' if active=='telephony' }}">Telefonija</a>
<a href="/dash/agent" class="{{ 'active' if active=='agent' }}">Asistent</a>
<a href="/dash/notifications" class="{{ 'active' if active=='notifications' }}">Obavještenja</a>
</nav>
<div class="right">
{{ owner.tenant.name }}{% if owner.impersonated_by %} <b>(admin pregled)</b>{% endif %}
· <a href="/logout">Odjava</a>
</div>
</header>