Merge pull request #3313 from alphagov/update-upload-a-letter-content

Update upload a letter content
This commit is contained in:
karlchillmaid
2020-02-28 11:26:43 +00:00
committed by GitHub
2 changed files with 22 additions and 13 deletions

View File

@@ -9,7 +9,8 @@
<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>Upload a one-off letter as a PDF and well print, pack and post it for you.</p>
<p>You can use this feature if you send a lot of one-off letters or if our reusable letter templates do not meet your needs.</p>
<p>To upload and send a letter from a PDF file:</p>
@@ -19,7 +20,9 @@
<li>Select <b class="govuk-!-font-weight-bold">Choose file</b>.</li>
</ol>
<h2 class="heading-medium" id="letter-specification">Letter specification</h2>
<h2 class="heading-medium" id="letter-specification">Your file must meet our letter specification</h2>
<p>The content of your letter must appear inside the printable area.</p>
<p>Your file must be:</p>
@@ -30,14 +33,6 @@
<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>
<p>To help you set up your letter, you can download our <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.letter_spec') }}">letter specification document (PDF)</a>.</p>
{% endblock %}

View File

@@ -22,6 +22,8 @@
'Upload a letter',
back_link=url_for('main.uploads', service_id=current_service.id)
) }}
<p>Upload a single letter as a PDF and well print, pack and post it for you.</p>
<p>You can use this feature if you send a lot of one-off letters or if our reusable letter templates do not meet your needs.</p>
{% endif %}
<p>
@@ -32,9 +34,21 @@
show_errors=False
)}}
</p>
<p>You can upload a single letter as a PDF.</p>
<p>Your file must meet our <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.upload_a_letter', _anchor='letter-specification') }}">letter specification</a>.</p>
<h2 class="heading-medium">Your file must meet our letter specification</h2>
<p>The content of your letter must appear inside the printable area.</p>
<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>To help you set up your letter, you can download our <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.letter_spec') }}">letter specification document (PDF)</a>.</p>
</div>
</div>
{% endblock %}