mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-15 07:18:58 -04:00
26 lines
994 B
HTML
26 lines
994 B
HTML
{% 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 %}
|
|
|
|
{% block per_page_title %}
|
|
Guidance
|
|
{% endblock %}
|
|
|
|
{% block content_column_content %}
|
|
|
|
<h1 class="heading-large">Guidance</h1>
|
|
|
|
<p>This guidance is for teams using GOV.UK Notify to send emails, text messages and letters.</p>
|
|
|
|
<p>It explains how to:</p>
|
|
|
|
<ul class="list list-bullet">
|
|
<li><a href="{{ url_for('.create-and-send-messages') }}">create and send messages</a></li>
|
|
<li><a href="{{ url_for('.edit-and-format-messages') }}">edit and format messages</a></li>
|
|
<li><a href="{{ url_for('.send-files-by-email') }}">send files by email</a></li>
|
|
<li><a href="{{ url_for('.upload-a-letter') }}">upload your own letters</a></li>
|
|
<li>add <a href="{{ url_for('.branding-and-customisation') }}">branding and customisation</a></li>
|
|
</ul>
|
|
|
|
{% endblock %}
|