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

46 lines
2.0 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 %}
{% 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>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>
{% endblock %}