Files
notifications-admin/app/templates/views/notifications.html
T

28 lines
834 B
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
2016-09-27 15:07:40 +01:00
{% from "components/ajax-block.html" import ajax_block %}
{% from "components/message-count-label.html" import message_count_label, recipient_count_label %}
{% block page_title %}
2016-06-07 11:17:33 +01:00
{{ message_count_label(99, message_type, suffix='') | capitalize }} GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
2016-09-27 15:07:40 +01:00
{{ message_count_label(99, message_type, suffix='') | capitalize }}
</h1>
2016-09-27 15:07:40 +01:00
{{ ajax_block(
partials,
url_for('.get_notifications_as_json', service_id=current_service.id, message_type=message_type, status=status),
'counts'
) }}
2016-04-12 09:55:51 +01:00
2016-09-27 15:07:40 +01:00
{{ ajax_block(
partials,
2016-09-30 15:17:17 +01:00
url_for('.get_notifications_as_json', service_id=current_service.id, message_type=message_type, status=status, page=page),
2016-09-27 15:07:40 +01:00
'notifications'
) }}
2016-04-12 15:05:27 +01:00
{% endblock %}