Merged from master

This commit is contained in:
Chris Heathcote
2015-11-30 16:36:07 +00:00
12 changed files with 110 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
{% extends "admin_template.html" %}
{% block page_title %}
GOV.UK Notify | API keys and documentation
{% endblock %}
{% block content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">API keys and documentation</h1>
<p>Here's where developers can access information about the API and access keys</p>
<p><a href="dashboard">Back to dashboard</a></p>
</div>
</div>
{% endblock %}

View File

@@ -14,6 +14,10 @@ GOV.UK Notify | Dashboard
<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>

View File

@@ -14,7 +14,7 @@ GOV.UK Notify | Notifications activity
<ul>
<li><a href="/jobs/job/notification">view a specific notification</a></li>
<li><a href="jobs">view all the activity for this service</a></li>
<li><a href="/jobs">view all the activity for this service</a></li>
</ul>
</div>
</div>

View File

@@ -0,0 +1,20 @@
{% extends "admin_template.html" %}
{% block page_title %}
GOV.UK Notify | Manage users
{% endblock %}
{% block content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Manage users</h1>
<p>Here's where you can add or remove users of a service.</p>
<p><a href="dashboard">Back to dashboard</a></p>
</div>
</div>
{% endblock %}

View File

@@ -13,7 +13,7 @@ GOV.UK Notify | Notifications activity
<p>This page will be where we show what happened for a specific notification.</p>
<p>
<a href="job">View other notifications in this job</a>
<a href="/job">View other notifications in this job</a>
</p>
</div>
</div>

View File

@@ -0,0 +1,20 @@
{% extends "admin_template.html" %}
{% block page_title %}
GOV.UK Notify | Service settings
{% endblock %}
{% block content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Service settings</h1>
<p>Here's where users can update their service profile.</p>
<p><a href="dashboard">Back to dashboard</a></p>
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,20 @@
{% extends "admin_template.html" %}
{% block page_title %}
GOV.UK Notify | User settings
{% endblock %}
{% block content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">User profile</h1>
<p>Here's where users can update their profile, password etc.</p>
<p><a href="dashboard">Back to dashboard</a></p>
</div>
</div>
{% endblock %}