2015-12-14 16:37:15 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2015-12-18 10:26:56 +00:00
|
|
|
{% from "components/table.html" import table, field %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
{% block page_title %}
|
2015-12-18 10:26:56 +00:00
|
|
|
GOV.UK Notify | Dashboard
|
2015-11-25 16:21:28 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2015-12-14 16:37:15 +00:00
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2015-12-18 10:26:56 +00:00
|
|
|
<h1 class="heading-xlarge">Dashboard</h1>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2015-12-18 10:26:56 +00:00
|
|
|
{% call(item) table(
|
|
|
|
|
jobs[:3],
|
|
|
|
|
caption="Recent activity",
|
|
|
|
|
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 %}
|
|
|
|
|
<p>
|
|
|
|
|
<a href={{ url_for('.showjobs') }}>See all notifications activity</a>
|
|
|
|
|
</p>
|
2015-12-14 16:37:15 +00:00
|
|
|
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2015-11-30 14:53:25 +00:00
|
|
|
{% endblock %}
|