2020-01-20 16:42:32 +00: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 %}
{% block per_page_title %}
2020-01-22 11:01:37 +00:00
Upload a letter
2020-01-20 16:42:32 +00:00
{% 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 >
2020-02-03 13:29:58 +00:00
< p > To upload and send a letter from a PDF file:</ p >
2020-01-20 16:42:32 +00:00
< ol class = "list list-number" >
2020-02-14 14:09:32 +00:00
< li > Go to the < b class = "govuk-!-font-weight-bold" >< a href = "{{ url_for('.uploads', service_id=current_service.id) }}" > Uploads</ a ></ b > page.</ li >
2020-01-24 10:29:35 +00:00
< 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 >
2020-01-20 16:42:32 +00:00
</ ol >
2020-02-12 14:23:53 +00:00
< h2 class = "heading-medium" id = "letter-specification" > Letter specification</ h2 >
2020-01-21 15:17:30 +00:00
2020-02-12 14:13:50 +00:00
< 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 >
2020-02-14 14:09:32 +00:00
< p > To help you set up your letter, you can download our:</ p >
2020-02-12 14:13:50 +00:00
< ul class = "list list-bullet" >
2020-02-14 14:09:32 +00:00
< li >< a href = "{{ url_for('.letter_spec') }}" > letter specification document (PDF)</ a ></ li >
< li >< a 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 >
2020-02-12 14:13:50 +00:00
</ ul >
2020-01-22 15:14:43 +00:00
2020-01-20 16:42:32 +00:00
{% endblock %}