mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 13:39:41 -04:00
Having a file name for single messages made sense when they were called ‘Test message’. They made a bit of sense when single messages still had a file, which had to be called _something_. Now that individual messages don’t come from a file, and don’t land you on a page that looks like a ‘report’.
27 lines
807 B
HTML
27 lines
807 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/banner.html" import banner %}
|
|
{% from "components/ajax-block.html" import ajax_block %}
|
|
{% from "components/message-count-label.html" import message_count_label %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Report
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">
|
|
{{ message_count_label(1, template.template_type, suffix='') | capitalize }}
|
|
</h1>
|
|
|
|
{{ template|string }}
|
|
|
|
{{ ajax_block(partials, updates_url, 'status', finished=finished) }}
|
|
|
|
{{ page_footer(
|
|
secondary_link=url_for('.view_template', service_id=current_service.id, template_id=template.id),
|
|
secondary_link_text='Back to {}'.format(template.name)
|
|
) }}
|
|
|
|
{% endblock %}
|