Added in bar containing service name, user name/link to profile and sign out

This commit is contained in:
Chris Heathcote
2016-01-08 15:53:57 +00:00
committed by Chris Hill-Scott
parent 6d12953cce
commit 884e4e8057
5 changed files with 51 additions and 12 deletions

View File

@@ -1,5 +1,7 @@
<nav class="navigation">
<h3><a href="{{ url_for('.dashboard') }}">Service name</a></h3>
<ul>
<li><a href="{{ url_for('.dashboard') }}">Dashboard</a></li>
</ul>
<ul>
<li><a href="{{ url_for('.sendsms') }}">Send text messages</a></li>
<li><a href="{{ url_for('.sendemail') }}">Send emails</a></li>
@@ -12,7 +14,4 @@
<li><a href="{{ url_for('.manageusers') }}">Manage users</a></li>
<li><a href="{{ url_for('.service_settings') }}">Service settings</a></li>
</ul>
<ul>
<li><a href="/user-profile">Your details</a></li>
</ul>
</nav>