mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
28 lines
814 B
HTML
28 lines
814 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/banner.html" import banner %}
|
|
{% from "components/ajax-block.html" import ajax_block %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Report
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">
|
|
Report
|
|
</h1>
|
|
|
|
{{ template|string }}
|
|
|
|
{{ ajax_block(partials, updates_url, 'status', finished=finished) }}
|
|
{{ ajax_block(partials, updates_url, 'counts', finished=finished) }}
|
|
{{ ajax_block(partials, updates_url, 'notifications', 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 %}
|