mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 05:18:25 -04:00
22 lines
605 B
HTML
22 lines
605 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/banner.html" import banner %}
|
||
{% from "components/ajax-block.html" import ajax_block %}
|
||
|
||
{% block page_title %}
|
||
{{ uploaded_file_name }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
{{ uploaded_file_name }}
|
||
</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) }}
|
||
|
||
{% endblock %}
|