harbor/views/ng/navigation-header.htm

9 lines
366 B
HTML
Raw Normal View History

{{ if eq .HasLoggedIn true }}
<ul class="nav-custom">
<li><a tag="dashboard" href="/ng/dashboard">// 'dashboard' | tr //</a></li>
<li><a tag="project" href="/ng/project">// 'projects' | tr //</a></li>
{{ if eq .IsAdmin 1 }}
<li><a tag="admin_option" href="/ng/admin_option#/all_user">// 'admin_options' | tr //</a></li>
{{ end }}
</ul>
{{ end }}