{% extends "withnav_template.html" %} {% from "components/table.html" import list_table, field, right_aligned_field_heading %} {% from "components/big-number.html" import big_number %} {% from "components/banner.html" import banner %} {% from "components/sms-message.html" import sms_message %} {% block page_title %} GOV.UK Notify | Notifications activity {% endblock %} {% block maincolumn_content %}

{{ uploaded_file_name }}

{{ sms_message( template['content'], )}}

Started {{ uploaded_file_time|format_datetime }}

{{ sms_message( 'Your application has been received. Register online at www.gov.uk/register-to-vote', )}} {% call(item) list_table( messages, caption=uploaded_file_name, caption_visible=False, empty_message="Messages go here", field_headings=[ 'To', 'Message', right_aligned_field_heading('Status') ] ) %} {% call field() %} {{item.phone}} {% endcall %} {% call field() %} {{item.message[:50]}}… {% endcall %} {% call field( align='right', status='error' if item.status == 'Failed' else 'default' ) %} {{ item.status }} {{ item.time }} {% endcall %} {% endcall %} {% endblock %}