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

61 lines
3.2 KiB
HTML
Raw Normal View History

{% extends "content_template.html" %}
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/content-metadata.html" import content_metadata %}
2017-03-23 14:59:24 +00:00
{% block per_page_title %}
2017-06-14 17:01:16 +01:00
Roadmap
2017-03-23 14:59:24 +00:00
{% endblock %}
{% block content_column_content %}
2017-03-23 14:59:24 +00:00
<h1 class="heading-large">Roadmap</h1>
2017-03-23 14:59:24 +00:00
{{ content_metadata(
data={
2022-01-06 15:40:14 +00:00
"Last updated": "30 November 2021",
"Next review due": "20 January 2022"
}
) }}
2021-12-31 09:56:40 +00:00
2022-01-06 15:40:14 +00:00
2021-11-30 09:03:58 +00:00
<p class="govuk-body">The GOV.UK Notify roadmap shows what were working on and some of the <a class="govuk-link govuk-link--no-visited-state" href="#things-we-have-done">things weve done</a>.</p>
2021-11-24 16:15:02 +00:00
<p class="govuk-body">The roadmap is only a guide. It does not cover everything we do, and some things may 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>
2021-11-24 16:15:02 +00:00
<h2 class="heading-medium">Things were working on</h2>
<h3 class="heading-small">Now</h3>
2021-02-25 14:22:57 +00:00
<ul class="list list-bullet">
<li>Meet our targets for <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('main.accessibility_statement')}}">accessibility</a></li>
<li>Explore how we can make it easier for new teams to <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('main.get_started')}}">start using Notify</a></li>
<li>Explore ways to improve the quarterly <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('main.how_to_pay')}}">billing and invoicing</a> process</li>
2021-11-30 13:54:29 +00:00
<li>Help teams understand how their organisation uses Notify</li>
2021-02-25 14:22:57 +00:00
</ul>
2021-11-24 16:15:02 +00:00
<h3 class="heading-small">Next</h3>
<ul class="list list-bullet">
2021-11-30 13:36:28 +00:00
<li>Design a way for services to upload their own logo and <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('main.branding_and_customisation')}}">branding for emails and letters</a></li>
2021-11-24 16:15:02 +00:00
<li>Explore ways to improve our daily letter printing capability</li>
<li>Prototype new ways to <a class="govuk-link govuk-link--no-visited-state" href="https://gds.blog.gov.uk/2020/08/18/can-gov-uk-notify-help-the-public-sector-write-better-emails-text-messages-and-letters/">help teams write cheaper, more effective messages</a></li>
2021-11-24 16:15:02 +00:00
</ul>
<h3 class="heading-small">Later</h3>
2021-02-25 14:22:57 +00:00
<ul class="list list-bullet">
2021-11-24 16:15:02 +00:00
<li>Test our current capacity limits and rate limits</li>
<li>Test some new ways to help teams to write better messages</li>
</ul>
2017-03-23 14:59:24 +00:00
2021-11-30 16:38:57 +00:00
<h2 class="heading-medium" id="things-we-have-done">Things weve done</h2>
2021-11-30 09:03:58 +00:00
2021-11-30 15:45:10 +00:00
<p class="govuk-body">Since January 2021 weve sent 1 billion messages for services that were set up in response to the coronavirus (COVID-19) pandemic. This includes 4.5 million <a class="govuk-link govuk-link--no-visited-state" href="https://www.nhs.uk/conditions/coronavirus-covid-19/coronavirus-vaccination/book-coronavirus-vaccination/">vaccination</a> invitation letters and 700 million <a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/get-coronavirus-test">test results</a>.</p>
2021-11-24 16:15:02 +00:00
2021-11-30 19:15:52 +00:00
<p class="govuk-body">More recently, weve upgraded some of the software we use to more recent versions.</p>
2021-11-30 13:54:29 +00:00
2017-03-23 14:59:24 +00:00
{% endblock %}