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

46 lines
2.0 KiB
HTML
Raw Normal View History

2017-03-23 14:59:24 +00:00
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field %}
{% 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>Its 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>
<p>Were 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>
2017-03-23 14:59:24 +00:00
{% endblock %}