mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-16 08:12:36 -04:00
50 lines
1.8 KiB
HTML
50 lines
1.8 KiB
HTML
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
|
||
{% extends "content_template.html" %}
|
||
|
||
{% block per_page_title %}
|
||
Roadmap
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading-large">Roadmap</h1>
|
||
|
||
<p class="govuk-body">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 class="govuk-body">The roadmap is a guide to what we have planned, but some things might change.</p>
|
||
<p class="govuk-body">You can <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('.support')}}">contact us</a> if you have any questions about the roadmap or suggestions for new features.</p>
|
||
|
||
<h2 class="heading-medium">March to June 2021</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
|
||
<li>Let teams see who else in their organisation is using Notify</li>
|
||
<li>Help teams to write better messages (alpha)</li>
|
||
<!--<li>Protect recipients from phishing by improving the quality of text message sender names</li>-->
|
||
<li>Support more file types when sharing documents by email</li>
|
||
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">July to December 2021</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
|
||
<li>Add multilingual letter templates so teams can provide information in several languages</li>
|
||
<li>Add large-print letter templates</li>
|
||
<li>Start sending emails from nhs.uk, gov.scot and parliament.uk email addresses</li>
|
||
<li>Help teams to write better messages (private beta)</li>
|
||
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">January to March 2022</h2>
|
||
|
||
|
||
<ul class="list list-bullet">
|
||
|
||
<li>Help teams to write better messages (public beta)</li>
|
||
<li>Let teams add forms and attachments to letter templates</li>
|
||
<li>Explore ways to shorten links in emails and text messages</li>
|
||
|
||
</ul>
|
||
|
||
{% endblock %}
|