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

13 lines
690 B
HTML
Raw Normal View History

<header>
<div class="logo">Gogo <span>Admin</span></div>
<nav>
<a href="/admin" class="{{ 'active' if active=='tenants' }}">Saloni</a>
<a href="/admin/numbers" class="{{ 'active' if active=='numbers' }}">Brojevi/SIM</a>
<a href="/admin/templates" class="{{ 'active' if active=='templates' }}">Prompt šablon</a>
<a href="/admin/playground" class="{{ 'active' if active=='playground' }}">Playground</a>
<a href="/admin/usage" class="{{ 'active' if active=='usage' }}">Potrošnja</a>
<a href="/admin/health" class="{{ 'active' if active=='health' }}">Sistem</a>
</nav>
<div class="right">{{ admin.email }} · <a href="/admin/logout">Odjava</a></div>
</header>