Files
notifications-admin/app/templates/views/roadmap.html

71 lines
2.8 KiB
HTML
Raw Normal View History

{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/sub-navigation.html" import sub_navigation %}
2017-03-23 14:59:24 +00:00
{% extends "withoutnav_template.html" %}
{% block per_page_title %}
2017-06-14 17:01:16 +01:00
Roadmap
2017-03-23 14:59:24 +00:00
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-one-third">
{{ sub_navigation(navigation_links) }}
</div>
2017-03-23 14:59:24 +00:00
<div class="column-two-thirds">
<h1 class="heading-large">Roadmap</h1>
<p>The GOV.UK Notify roadmap shows the things were working on and when we hope to have them ready for you to use.</p>
<p>Notify is in public beta. This means its fully operational and supported, but were regularly adding new features. The roadmap is a guide to what we have planned, but some things might change.</p>
<p>You can <a href="{{url_for('.feedback', ticket_type='ask-question-give-feedback')}}">contact us</a> for more detail about these features, or to suggest something else youd like Notify to offer.</p>
<h2 class="heading-medium">Sending and receiving messages</h2>
2018-01-23 15:46:49 +00:00
2018-01-24 11:33:26 +00:00
<h2 class="heading-small">February to March 2018</h2>
2018-01-23 15:46:49 +00:00
<ul class="list list-bullet">
<li>Sending pre-compiled text messages and emails through templates</li>
<li>Sending of pre-compiled letters</li>
</ul>
<h2 class="heading-small">April 2018 onwards</h2>
<ul class="list list-bullet">
2018-01-23 15:46:49 +00:00
<li>Additional letter formatting options</li>
<li>Customised expiry time for text messages</li>
<li>Distributed delivery of notifications over a period of time</li>
<li>Automated content scanning for banned content</li>
<li>Checking mobile numbers are valid before sending</li>
<li>Sending of pre-compiled text messages and emails without templates</li>
<li>Publishing patterns for effective notifications</li>
<li>Saving work in progress/draft templates</li>
<li>Exploring other channels (Facebook messenger, WhatsApp, Push Notifications)</li>
</ul>
<h2 class="heading-medium">Managing your account</h2>
2018-01-23 15:46:49 +00:00
2018-01-24 11:33:26 +00:00
<h2 class="heading-small">February to March 2018</h2>
2018-01-23 15:46:49 +00:00
<ul class="list list-bullet">
<li>Caseworking interface</li>
<li>Organisational view of service activity</li>
</ul>
<h2 class="heading-small">April 2018 onwards</h2>
<ul class="list list-bullet">
2018-01-23 15:46:49 +00:00
<li>Allow multiple teams within a service</li>
<li>Add NHS and Parliament email sending domains</li>
<li>Let service owners to update team members phone number or email address</li>
<li>Let teams to enable or disable features themselves</li>
<li>Retire version 1 of the API</li>
<li>Add public endpoints for usage and reporting</li>
<li>Self-service access to invoices</li>
<li>Additional payment methods for teams using Notify</li>
</ul>
</div>
</div>
2017-03-23 14:59:24 +00:00
{% endblock %}