mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Adds the pages and wires them together, so that it’s possible to click through them. The wording is not quite English, but attempts to be an rough description of what the consequences are for each of the four actions.
34 lines
769 B
HTML
34 lines
769 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/table.html" import list_table, field %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Notifications activity
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-xlarge">Notifications activity</h1>
|
|
|
|
{% call(item) list_table(
|
|
jobs,
|
|
caption="Recent activity",
|
|
caption_visible=False,
|
|
field_headings=['Job', 'File', 'Time', 'Status']
|
|
) %}
|
|
{% call field() %}
|
|
<a href="{{ url_for('.showjob') }}">{{ item.file }}</a>
|
|
{% endcall %}
|
|
{% call field() %}
|
|
<a href="{{ url_for('.showjob') }}">{{ item.job }}</a>
|
|
{% endcall %}
|
|
{% call field() %}
|
|
{{ item.time }}
|
|
{% endcall %}
|
|
{% call field() %}
|
|
{{ item.status }}
|
|
{% endcall %}
|
|
{% endcall %}
|
|
|
|
|
|
{% endblock %}
|