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

71 lines
2.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/sub-navigation.html" import sub_navigation %}
{% extends "withoutnav_template.html" %}
{% block per_page_title %}
Roadmap
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-one-third">
{{ sub_navigation(navigation_links) }}
</div>
<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 class="panel panel-border-wide">This roadmap is a only a guide and 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>
<h2 class="heading-small">February to March 2018</h2>
<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">
<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>
<h2 class="heading-small">February to March 2018</h2>
<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">
<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>
{% endblock %}