mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 02:08:24 -04:00
Includes: - make 'remove team member' link, on edit member permissions page, destructive - convert missed links on /features pages - convert missed links on /using-notify/guidance and sub pages - give links in browse-lists back their size and weight (needed for lists of live and trial services on Platform Admin) - give links on Platform Admin inbound numbers page back their size and weight - update links in JS tests
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
{% extends "content_template.html" %}
|
||
{% from "components/service-link.html" import service_link %}
|
||
|
||
{% block per_page_title %}
|
||
Upload a letter
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading-large">Upload a letter</h1>
|
||
|
||
<p>You can upload and send your own letters instead of creating a reusable letter template.</p>
|
||
|
||
<p>To upload and send a letter from a PDF file:</p>
|
||
|
||
<ol class="list list-number">
|
||
<li>Go to the {{ service_link(current_service, 'main.uploads', 'uploads') }} page.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Upload a letter</b>.</li>
|
||
<li>Select <b class="govuk-!-font-weight-bold">Choose file</b>.</li>
|
||
</ol>
|
||
|
||
<h2 class="heading-medium" id="letter-specification">Letter specification</h2>
|
||
|
||
<p>Your file must be:</p>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>a PDF</li>
|
||
<li>A4 portrait size (210 × 297 mm)</li>
|
||
<li>10 pages or less</li>
|
||
<li>smaller than 2MB</li>
|
||
</ul>
|
||
|
||
<p>The content of your letter must appear inside the printable area.</p>
|
||
|
||
<p>To help you set up your letter, you can download our:</p>
|
||
|
||
<ul class="list list-bullet">
|
||
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.letter_spec') }}">letter specification document (PDF)</a></li>
|
||
<li><a class="govuk-link govuk-link--no-visited-state" href="https://docs.notifications.service.gov.uk/documentation/images/notify-pdf-letter-word-template-v1.0.docx">print margin checker for Microsoft Word (.docx)</a></li>
|
||
</ul>
|
||
|
||
|
||
{% endblock %}
|