Skip to content

Commit

Permalink
Reorder navigation bar.
Browse files Browse the repository at this point in the history
  • Loading branch information
kabalin committed Feb 3, 2019
1 parent 19cd2e3 commit 9a05f9b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/templates/includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@
<ul class="nav navbar-nav">
{{#if currentUser}}
<li><a href="{{pathFor 'locationSubmit'}}">Suggest new location</a></li>
<li class="dropdown">{{> notifications}}</li>
{{/if}}
{{#if isAdminUser}}<li><a href="{{pathFor 'accountsAdmin'}}">Admin</a></li>{{/if}}
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">{{> notifications}}</li>
{{> loginButtons}}
</ul>
</div>
</div>
</nav>
</template>

<template name="_loginButtonsAdditionalLoggedInDropdownActions">
{{#if isAdminUser}}<div><a href="{{pathFor 'accountsAdmin'}}">Admin users</a></div>{{/if}}
</template>

0 comments on commit 9a05f9b

Please sign in to comment.