mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-24 01:49:15 -04:00
completely mimicks the job status page, and as such, all the code and templates have been taken from the job page. This page performs exactly the same as the job page for now * total, sending, delivered, failed blue boxes (though they'll just read 0/1 for now. * download report button (same as with job download, except without job or row number in file) * removed references to scheduled * kept references to help (aka tour/tutorial) as that'll eventually change over from a job to a one-off too
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 %}
|