mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-07 06:50:56 -04:00
Before deploying a change to template-preview to return a validation error for letters that are missing the address block, we need to add the new erorr message to admin. Some content changes have been made to other messages. The format of the message has changed.
18 lines
420 B
HTML
18 lines
420 B
HTML
{% extends "withnav_template.html" %}
|
||
|
||
{% block service_page_title %}
|
||
Letter
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Letter</h1>
|
||
|
||
<p>
|
||
Provided as PDF on {{ created_at|format_datetime_short }}
|
||
</p>
|
||
<p class="notification-status-cancelled">
|
||
Validation failed – There’s a problem with your letter. <br>Notify cannot read this PDF.
|
||
</p>
|
||
{% endblock %}
|