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

34 lines
815 B
HTML
Raw Normal View History

2015-12-14 16:53:07 +00:00
{% extends "withnav_template.html" %}
2016-01-07 12:29:56 +00:00
{% from "components/table.html" import list_table, field %}
{% block page_title %}
GOV.UK Notify | Notifications activity
{% endblock %}
2015-12-14 16:53:07 +00:00
{% block maincolumn_content %}
<h1 class="heading-xlarge">Notifications activity</h1>
2016-01-07 12:29:56 +00:00
{% call(item) list_table(
2015-12-18 10:26:56 +00:00
jobs,
caption="Recent activity",
caption_visible=False,
field_headings=['Job', 'File', 'Time', 'Status']
) %}
{% call field() %}
<a href="{{ url_for('.showjob', service_id=service_id) }}">{{ item.file }}</a>
2015-12-18 10:26:56 +00:00
{% endcall %}
{% call field() %}
<a href="{{ url_for('.showjob', service_id=service_id) }}">{{ item.job }}</a>
2015-12-18 10:26:56 +00:00
{% endcall %}
{% call field() %}
{{ item.time }}
{% endcall %}
{% call field() %}
{{ item.status }}
{% endcall %}
{% endcall %}
2015-12-14 16:53:07 +00:00
{% endblock %}