2015-11-25 16:21:28 +00:00
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2015-11-30 14:53:25 +00:00
|
|
|
GOV.UK Notify | Dashboard
|
2015-11-25 16:21:28 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
<h1 class="heading-xlarge">Dashboard</h1>
|
|
|
|
|
|
2015-11-30 14:53:25 +00:00
|
|
|
<ul>
|
2015-12-10 21:15:20 +00:00
|
|
|
<li><a href="{{ url_for('.sendsms') }}">Send text messages</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.sendemail') }}">Send email messages</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.showjobs') }}">View notifications activity</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.userprofile') }}">User profile</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.manageusers') }}">Manage users</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.managetemplates')}}">Manage templates</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.servicesettings') }}">Service settings</a></li>
|
|
|
|
|
<li><a href="{{ url_for('.apikeys') }}">API keys and documentation</a></li>
|
2015-11-30 14:53:25 +00:00
|
|
|
</ul>
|
2015-11-25 16:21:28 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-11-30 14:53:25 +00:00
|
|
|
{% endblock %}
|