mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-02 15:38:19 -04:00
The activity page looks the same as the job page. So it should behave the same and not need manually refreshing to see the new stuff.
28 lines
823 B
HTML
28 lines
823 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/ajax-block.html" import ajax_block %}
|
||
{% from "components/message-count-label.html" import message_count_label, recipient_count_label %}
|
||
|
||
{% block page_title %}
|
||
{{ message_count_label(99, message_type, suffix='') | capitalize }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
{{ message_count_label(99, message_type, suffix='') | capitalize }}
|
||
</h1>
|
||
|
||
{{ ajax_block(
|
||
partials,
|
||
url_for('.get_notifications_as_json', service_id=current_service.id, message_type=message_type, status=status),
|
||
'counts'
|
||
) }}
|
||
|
||
{{ ajax_block(
|
||
partials,
|
||
url_for('.get_notifications_as_json', service_id=current_service.id, message_type=message_type, status=status),
|
||
'notifications'
|
||
) }}
|
||
|
||
{% endblock %}
|