mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-21 10:43:48 -04:00
Includes: - turning off :visited styles to match existing design - swapping heading classes used to make links bold for the GOVUK Frontend bold override class - adding visually hidden text to some links to make them work when isolated from their context We may need to revisit whether some links, such as those for documentation and features, may benefit from having some indication that their target has been visited.
52 lines
2.1 KiB
HTML
52 lines
2.1 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>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>Notify is in public beta. This means it’s fully operational and supported, but we’re still adding new features. The roadmap is a guide to what we have planned, but some things might change.</p>
|
||
<p>You can <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('.feedback', ticket_type='ask-question-give-feedback')}}">contact us</a> if you have any questions about the roadmap or suggestions for new features.</p>
|
||
|
||
<h2 class="heading-medium">January to March 2020</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Let services send letters to international addresses</li>
|
||
<li>Automate the removal of inactive users and API keys</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">April to June 2020</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Use two-factor authentication to protect files sent by email</li>
|
||
<li>Let services attach forms to letter templates</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">July to September 2020</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>Add large print letter templates</li>
|
||
<li>Add multilingual letter templates so services can provide information in several languages</li>
|
||
<li>Publish guidance and examples to help teams send effective messages</li>
|
||
<li>Let services save emergency contact lists for business continuity</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">October 2020 onwards</h2>
|
||
|
||
<ul class="list list-bullet">
|
||
|
||
<li>Start sending emails from NHS and Parliament email addresses</li>
|
||
<li>Add a link shortening service</li>
|
||
<li>Specify an expiry period for undeliverable text messages</li>
|
||
<li>Let users save draft templates</li>
|
||
<li>Distribute the delivery of a batch of messages over several hours</li>
|
||
<li>Explore other ways to pay for Notify</li>
|
||
</ul>
|
||
|
||
{% endblock %}
|