mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 06:18:26 -04:00
This is a convenient way of being able to link into pages of the the app from guidance. It handles the case where the current service is not known, either because the user hasn’t chosen one, or because they’re not signed in. This commit also cleans up some unused Jinja imports.
23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
{% extends "content_template.html" %}
|
||
{% from "components/current-service-link.html" import current_service_link %}
|
||
|
||
{% block per_page_title %}
|
||
Send messages
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading-large">Send messages</h1>
|
||
|
||
<p><a href="{{ url_for('main.register') }}">Create an account</a> to see a short tutorial explaining how to create and send messages.</p>
|
||
|
||
<h2 class="heading-medium" id="bulk-sending">Bulk sending</h2>
|
||
|
||
<p>To send a batch of messages at once:</p>
|
||
<ol class="list list-number">
|
||
<li>Go to the {{ current_service_link('main.choose_template', 'templates') }} page and choose an existing template.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Send</b>.</li>
|
||
<li>If you’re sending emails, select <b class="govuk-!-font-weight-bold">Upload a list of email addresses</b>. If you’re sending text messages, select <b class="govuk-!-font-weight-bold">Upload a list of phone numbers</b>. If you’re sending letters, select <b class="govuk-!-font-weight-bold">Upload a list of addresses</b>.</li>
|
||
|
||
{% endblock %}
|