Files
notifications-admin/app/templates/views/roadmap.html
2022-02-02 09:09:17 +00:00

72 lines
3.4 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.
{% 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 %}
{% block per_page_title %}
Roadmap
{% endblock %}
{% block content_column_content %}
<h1 class="heading-large">Roadmap</h1>
{{ content_metadata(
data={
"Last updated": "20 January 2022",
"Next review due": "20 April 2022"
}
) }}
<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>
<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>
<h2 class="heading-medium" id="things-we-are-working-on">Things were working on</h2>
<h3 class="heading-small" id="now">Now</h3>
<ul class="list list-bullet">
<li>Let services pick their own <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('main.branding_and_customisation')}}">branding for emails</a></li>
<li>Test our current capacity limits and rate limits</li>
<li>Carry out our annual IT health check</li>
<li>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>Help services to get better value for money</li>
</ul>
<h3 class="heading-small" id="next">Next</h3>
<ul class="list list-bullet">
<li>Improve user support by making our processes more efficient</li>
<li>Design a way for services to upload their own brand logo for emails and letters</li>
<li>Explore ways to share common content patterns</li>
</ul>
<h3 class="heading-small" id="later">Later</h3>
<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>Make it easier for organisations to find the usage data they need</li>
<li>Explore ways to improve our daily letter printing capability</li>
</ul>
<h2 class="heading-medium" id="things-we-have-done">Things weve done</h2>
<p class="govuk-body">In 2021 we sent 1.3 billion messages for coronavirus (COVID-19) services. This includes 270 million <a class="govuk-link govuk-link--no-visited-state" href="https://www.nhs.uk/conditions/coronavirus-covid-19/coronavirus-vaccination/coronavirus-booster-vaccine/">booster vaccination</a> invitations and 751 million <a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/get-coronavirus-test">test results</a>.</p>
<p class="govuk-body">Recently we have:</p>
<ul class="list list-bullet">
<li>improved our performance by <a class="govuk-link govuk-link--no-visited-state" href="https://technology.blog.gov.uk/2022/02/01/upgrading-celery-on-gov-uk-notify/">upgrading the software we use</a></li>
<li>made our website work better in Windows high contrast mode</li>
<li>increased our capacity at short notice during a busy period</li>
<li>added quarterly billing reports that organisations can download</li>
</ul>
{% endblock %}