mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-22 14:11:27 -04:00
46 lines
2.0 KiB
HTML
46 lines
2.0 KiB
HTML
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field %}
|
||
{% 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 we’re working on and when we hope to have them ready for you to use.</p>
|
||
<p>It’s 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 you’d like Notify to offer.</p>
|
||
|
||
<h2 class="heading-medium">Sending and receiving messages</h2>
|
||
<p>We’re working on new features so that you can:</p>
|
||
<ul class="list list-bullet">
|
||
<li>allow services to get text messages replies via the API (November 2017)</li>
|
||
<li>posting delivery receipts to services (December 2017)</li>
|
||
<li>sending of pre-compiled letters (January 2018)</li>
|
||
<li>customising the expiry time for text messages (February - April 2018)</li>
|
||
<li>sending of pre-compiled text messages and emails (February - April 2018)</li>
|
||
<li>distributing delivery of notifications over a period of time (May 2018 onwards)</li>
|
||
<li>Automated content scanning for banned content (May 2018 onwards)</li>
|
||
<li>Checking mobile numbers are valid before sending (May 2018 onwards)</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">Managing your account</h2>
|
||
<p>We want to offer the functionality for:</p>
|
||
<ul class="list list-bullet">
|
||
<li>allow service owners to manage team members details (February - April 2018)</li>
|
||
<li>allowing people to request to join a service (February - April 2018)</li>
|
||
</ul>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|