{% extends "withnav_template.html" %} {% from "components/table.html" import table, field %} {% block page_title %} GOV.UK Notify | Dashboard {% endblock %} {% block maincolumn_content %}

Dashboard

{% call(item) table( jobs[:3], caption="Recent activity", field_headings=['Job', 'File', 'Time', 'Status'] ) %} {% call field() %} {{ item.file }} {% endcall %} {% call field() %} {{ item.job }} {% endcall %} {% call field() %} {{ item.time }} {% endcall %} {% call field() %} {{ item.status }} {% endcall %} {% endcall %}

See all notifications activity

{% endblock %}