mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
26 lines
668 B
HTML
26 lines
668 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Dashboard
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-xlarge">Dashboard</h1>
|
|
|
|
<ul>
|
|
<li><a href="send-sms">Send text messages</a></li>
|
|
<li><a href="send-email">Send email messages</a></li>
|
|
<li><a href="jobs">View notifications activity</a></li>
|
|
<li><a href="user-profile">User profile</a></li>
|
|
<li><a href="manage-users">Manage users</a></li>
|
|
<li><a href="service-settings">Service settings</a></li>
|
|
<li><a href="api-keys">API keys and documentation</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|