Files
notifications-admin/app/templates/views/get-started.html

83 lines
4.6 KiB
HTML
Raw Normal View History

2019-10-15 11:38:30 +01:00
{% extends "content_template.html" %}
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
{% from "components/sub-navigation.html" import sub_navigation %}
2019-10-15 09:39:24 +01:00
2019-10-15 11:38:30 +01:00
{% block per_page_title %}
Get started
{% endblock %}
{% block content_column_content %}
2019-10-16 10:59:08 +01:00
<h1 class="heading-large">Get started</h1>
2019-10-15 11:38:30 +01:00
<ol class="get-started-list">
<li class="get-started-list__item">
<h2 class="get-started-list__heading">Check if GOV.UK Notify is right for you</h2>
2019-10-17 15:22:49 +01:00
<p>Read about our <a href="{{ url_for('main.features') }}">features</a>, <a href="{{ url_for('.pricing') }}">pricing</a> and <a href="{{ url_for('main.roadmap') }}">roadmap</a>.</p>
2019-10-15 11:38:30 +01:00
<details>
<summary>Organisations that can use Notify</summary>
2019-10-17 16:23:21 +01:00
<div id="eligible-organisations">
2019-10-15 11:38:30 +01:00
<p>Notify is available to:</p>
<ul class="list list-bullet">
<li>central government departments</li>
<li>local authorities</li>
<li>state-funded schools</li>
<li>housing associations</li>
<li>the NHS</li>
<li>companies owned by local or central government that deliver services on their behalf</li>
</ul>
<p>Notify is not currently available to charities.</p>
2019-10-17 16:23:21 +01:00
</div>
2019-10-15 11:38:30 +01:00
</details>
</li>
2019-10-17 16:15:28 +01:00
<li class="get-started-list__item">
<h2 class="get-started-list__heading">Create an account</h2>
2019-10-15 11:38:30 +01:00
{% if not current_user.is_authenticated %}
2019-10-17 16:15:28 +01:00
<p><a href="{{ url_for('.register') }}">Create an account</a> for free and add your first Notify service. When you add a new service, it will start in <a href="{{ url_for('main.trial_mode_new') }}">trial mode</a>.</p>
2019-10-15 11:38:30 +01:00
{% else %}
<p>Create an account for free and add your first Notify service. When you add a new service, it will start in <a href="{{ url_for('main.trial_mode_new') }}">trial mode</a>.</p>
2019-10-15 11:38:30 +01:00
{% endif %}
</li>
2019-10-17 16:15:28 +01:00
<li class="get-started-list__item">
<h2 class="get-started-list__heading">Write some messages</h2>
2019-10-18 09:24:02 +01:00
<p>Add <a href="{{ url_for('main.features', _anchor='templates') }}">message templates</a> with examples of the content you plan to send.<!-- You do not need to add letter templates if youre planning to <a href="{{ url_for('main.features_letters', _anchor='upload-letters') }}">upload your own letters</a>.--></p>
2019-10-15 17:09:12 +01:00
<p>The GOV.UK Service Manual has advice on:</p>
2019-10-15 11:38:30 +01:00
<ul class="list list-bullet">
2019-10-15 17:09:12 +01:00
<li><a href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages#how-to-write-emails-and-text-messages">how to write emails and text messages</a></li>
2019-10-15 11:38:30 +01:00
<li><a href="https://www.gov.uk/service-manual/design/writing-effective-letters">writing effective letters</a></li>
2019-10-17 16:15:28 +01:00
</ul>
2019-10-15 11:38:30 +01:00
</li>
2019-10-17 16:15:28 +01:00
<li class="get-started-list__item">
<h2 class="get-started-list__heading">Set up your service</h2>
{% if not current_user.is_authenticated or not current_service %}
2019-10-30 10:49:05 +00:00
<p>Review your settings to add message branding, reply-to addresses and sender information.</p>
2019-10-17 15:22:49 +01:00
<p>Add team members and check their <a href="{{ url_for('main.features', _anchor='permissions') }}">permissions</a>.</p>
{% else %}
2019-10-30 10:49:05 +00:00
<p>Review your <a href="{{ url_for('.service_settings', service_id=current_service.id) }}">settings</a> to add message branding, reply-to addresses and sender information.</p>
2019-10-17 15:22:49 +01:00
<p>Add <a href="{{ url_for('.manage_users', service_id=current_service.id) }}">team members</a> and check their <a href="{{ url_for('main.features', _anchor='permissions') }}">permissions</a>.</p>
2019-10-15 11:38:30 +01:00
{% endif %}
</li>
2019-10-17 16:15:28 +01:00
<li class="get-started-list__item">
2019-11-04 10:25:27 +00:00
<h2 class="get-started-list__heading">Set up an API integration (optional)</h2>
2019-11-22 10:13:54 +00:00
<p>You can use the Notify API to send messages automatically.</p>
<p>Our <a href="{{ url_for('main.documentation') }}">documentation</a> explains how to integrate the API with a web application or back office system.</p>
2019-10-17 15:22:49 +01:00
</li>
2019-10-17 16:15:28 +01:00
<li class="get-started-list__item">
<h2 class="get-started-list__heading">Start sending messages</h2>
2019-11-04 10:25:27 +00:00
{% if not current_user.is_authenticated or not current_service %}
2019-11-21 09:33:51 +00:00
<p>When youre ready to send messages to people outside your team, go to the Settings page and request to go live. Well approve your request within one working day.</p>
{% else %}
2019-10-17 16:51:41 +01:00
<p>You should <a href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">request to go live</a> when youre ready to send messages to people outside your team. Well approve your request within one working day.</p>
2019-10-15 11:38:30 +01:00
{% endif %}
2019-10-18 09:24:02 +01:00
<p>Check <a href="{{ url_for('main.how_to_pay') }}">how to pay</a> if you're planning to send letters or exceed the <a href="{{ url_for('.pricing') }}">free text message allowance</a>.</p>
</li>
</ol>
2019-10-15 11:38:30 +01:00
{% endblock %}