mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
Adds the pages and wires them together, so that it’s possible to click through them. The wording is not quite English, but attempts to be an rough description of what the consequences are for each of the four actions.
19 lines
643 B
HTML
19 lines
643 B
HTML
<nav class="navigation">
|
|
<h3><a href="{{ url_for('.dashboard') }}">Service name</a></h3>
|
|
<ul>
|
|
<li><a href="{{ url_for('.sendsms') }}">Send text messages</a></li>
|
|
<li><a href="{{ url_for('.sendemail') }}">Send emails</a></li>
|
|
<li><a href="{{ url_for('.showjobs') }}">Activity</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li><a href="{{ url_for('.apikeys') }}">API keys and documentation</a></li>
|
|
</ul>
|
|
<ul>
|
|
<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>
|