2015-12-14 16:53:07 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2016-03-07 18:47:05 +00:00
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
2016-08-07 09:17:49 +01:00
|
|
|
{% from "components/radios.html" import radio_select %}
|
2016-04-05 11:16:29 +01:00
|
|
|
{% from "components/table.html" import list_table, field, text_field, index_field, hidden_field_heading %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2016-06-03 14:48:21 +01:00
|
|
|
{% from "components/message-count-label.html" import message_count_label %}
|
2020-01-30 14:01:13 +00:00
|
|
|
{% from "components/button/macro.njk" import govukButton %}
|
2016-06-03 13:52:15 +01:00
|
|
|
|
2017-02-13 15:20:56 +00:00
|
|
|
{% set file_contents_header_id = 'file-preview' %}
|
|
|
|
|
{% macro skip_to_file_contents() %}
|
2019-10-21 15:18:25 +01:00
|
|
|
<p class="govuk-visually-hidden">
|
2019-12-06 07:53:46 +00:00
|
|
|
<a class="govuk-link govuk-link--no-visited-state" href="#{{ file_contents_header_id }}">Skip to file contents</a>
|
2017-02-13 15:20:56 +00:00
|
|
|
</p>
|
|
|
|
|
{% endmacro %}
|
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block service_page_title %}
|
2017-07-20 09:02:08 +01:00
|
|
|
{{ "Preview of {}".format(template.name) }}
|
2015-11-30 14:20:17 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2015-12-14 16:53:07 +00:00
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
2019-04-29 11:44:05 +01:00
|
|
|
{{ page_header(
|
|
|
|
|
'Preview of {}'.format(template.name),
|
|
|
|
|
back_link=back_link
|
|
|
|
|
) }}
|
|
|
|
|
|
2019-10-01 17:16:15 +01:00
|
|
|
{% if letter_too_long %}
|
2019-10-24 14:17:01 +01:00
|
|
|
{% call banner_wrapper(type='dangerous') %}
|
2019-10-01 17:16:15 +01:00
|
|
|
{% include "partials/check/letter-too-long.html" %}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2017-07-20 09:02:08 +01:00
|
|
|
{{ skip_to_file_contents() }}
|
2016-10-14 10:44:28 +01:00
|
|
|
|
2017-07-20 09:02:08 +01:00
|
|
|
{{ template|string }}
|
2017-02-13 15:20:56 +00:00
|
|
|
<div class="bottom-gutter-3-2">
|
2018-03-29 17:01:35 +01:00
|
|
|
<form method="post" enctype="multipart/form-data" action="{{url_for('main.start_job', service_id=current_service.id, upload_id=upload_id, original_file_name=original_file_name)}}" class='page-footer'>
|
2016-02-17 15:49:07 +00:00
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
2016-07-05 11:39:07 +01:00
|
|
|
<input type="hidden" name="help" value="{{ '3' if help else 0 }}" />
|
2020-03-16 17:00:34 +00:00
|
|
|
<input type="hidden" name="contact_list_id" value="{{ request.args.get('contact_list_id', '') }}" />
|
2017-04-26 10:49:51 +01:00
|
|
|
{% if choose_time_form and template.template_type != 'letter' %}
|
2016-08-30 09:27:24 +01:00
|
|
|
{{ radio_select(
|
|
|
|
|
choose_time_form.scheduled_for,
|
|
|
|
|
wrapping_class='bottom-gutter-2-3'
|
|
|
|
|
) }}
|
|
|
|
|
{% endif %}
|
2019-10-01 17:16:15 +01:00
|
|
|
{% if (template.template_type != 'letter' or not request.args.from_test) and not letter_too_long %}
|
2020-01-30 14:01:13 +00:00
|
|
|
{% set button_text %}
|
|
|
|
|
Send {{ count_of_recipients|format_thousands }} {{ message_count_label(count_of_recipients, template.template_type, suffix='') }}
|
|
|
|
|
{% endset %}
|
|
|
|
|
{{ govukButton({ "text": button_text }) }}
|
2017-03-10 17:57:48 +00:00
|
|
|
{% else %}
|
2020-01-30 14:01:13 +00:00
|
|
|
{{ govukButton({
|
|
|
|
|
"element": "a",
|
|
|
|
|
"text": "Download as a PDF",
|
|
|
|
|
"href": url_for('no_cookie.check_messages_preview', service_id=current_service.id, template_id=template.id, upload_id=upload_id, filetype='pdf'),
|
|
|
|
|
}) }}
|
2017-03-10 17:57:48 +00:00
|
|
|
{% endif %}
|
2016-02-17 15:49:07 +00:00
|
|
|
</form>
|
2017-02-13 15:20:56 +00:00
|
|
|
</div>
|
|
|
|
|
|
2017-05-11 10:55:44 +01:00
|
|
|
{% if not request.args.from_test %}
|
|
|
|
|
|
|
|
|
|
<h2 class="heading-medium" id="{{ file_contents_header_id }}">{{ original_file_name }}</h2>
|
|
|
|
|
|
2017-12-14 11:58:40 +00:00
|
|
|
<div class="fullscreen-content" data-module="fullscreen-table">
|
|
|
|
|
{% call(item, row_number) list_table(
|
2018-03-05 15:57:10 +00:00
|
|
|
recipients.displayed_rows,
|
2017-12-14 11:58:40 +00:00
|
|
|
caption=original_file_name,
|
|
|
|
|
caption_visible=False,
|
|
|
|
|
field_headings=[
|
2019-10-21 15:18:25 +01:00
|
|
|
'<span class="govuk-visually-hidden">Row in file</span><span aria-hidden="true">1</span>'|safe
|
2017-12-14 11:58:40 +00:00
|
|
|
] + recipients.column_headers
|
|
|
|
|
) %}
|
|
|
|
|
{% call index_field() %}
|
2018-01-15 11:20:06 +00:00
|
|
|
<span>
|
2018-01-15 11:35:45 +00:00
|
|
|
{% if (item.index + 2) == preview_row %}
|
2018-01-15 11:25:11 +00:00
|
|
|
{{ item.index + 2 }}
|
|
|
|
|
{% else %}
|
2019-12-06 07:53:46 +00:00
|
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.check_messages', service_id=current_service.id, template_id=template.id, upload_id=upload_id, row_index=(item.index + 2), original_file_name=original_file_name) }}">{{ item.index + 2 }}</a>
|
2018-01-15 11:25:11 +00:00
|
|
|
{% endif %}
|
2017-12-14 11:58:40 +00:00
|
|
|
</span>
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% for column in recipients.column_headers %}
|
2018-03-05 15:57:10 +00:00
|
|
|
{% if item[column].ignore %}
|
|
|
|
|
{{ text_field(item[column].data or '', status='default') }}
|
2017-12-14 11:58:40 +00:00
|
|
|
{% else %}
|
2018-03-05 15:57:10 +00:00
|
|
|
{{ text_field(item[column].data or '') }}
|
2017-12-14 11:58:40 +00:00
|
|
|
{% endif %}
|
2017-05-11 10:55:44 +01:00
|
|
|
{% endfor %}
|
2018-03-05 15:57:10 +00:00
|
|
|
{% if item[None].data %}
|
|
|
|
|
{% for column in item[None].data %}
|
2017-12-14 11:58:40 +00:00
|
|
|
{{ text_field(column, status='default') }}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
</div>
|
2017-05-11 10:55:44 +01:00
|
|
|
|
|
|
|
|
{% endif %}
|
2015-12-11 17:25:04 +00:00
|
|
|
|
2017-07-20 09:02:08 +01:00
|
|
|
{% if count_of_displayed_recipients < count_of_recipients %}
|
2016-03-07 18:47:05 +00:00
|
|
|
<p class="table-show-more-link">
|
2017-12-14 17:55:47 +00:00
|
|
|
Only showing the first {{ count_of_displayed_recipients }} rows
|
2016-04-07 14:30:28 +01:00
|
|
|
</p>
|
2017-05-19 08:16:41 +01:00
|
|
|
{% endif %}
|
|
|
|
|
|
2015-11-30 14:20:17 +00:00
|
|
|
{% endblock %}
|