2020-07-06 10:53:14 +01:00
|
|
|
|
{% from "components/button/macro.njk" import govukButton %}
|
|
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2020-07-16 10:49:21 +01:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
{% from "components/radios.html" import radio_select %}
|
2020-07-06 10:53:14 +01:00
|
|
|
|
|
|
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
|
|
|
|
|
Preview message
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2020-07-09 10:33:50 +01:00
|
|
|
|
{{ page_header("Preview", back_link=url_for('.preview_broadcast_areas', service_id=current_service.id, broadcast_message_id=broadcast_message.id)) }}
|
2020-07-06 10:53:14 +01:00
|
|
|
|
|
2020-07-09 10:33:50 +01:00
|
|
|
|
{% for area in broadcast_message.areas %}
|
2020-07-06 10:53:14 +01:00
|
|
|
|
{% if loop.first %}
|
2020-07-06 10:53:15 +01:00
|
|
|
|
<ul class="area-list">
|
2020-07-06 10:53:14 +01:00
|
|
|
|
{% endif %}
|
2020-07-08 17:41:20 +01:00
|
|
|
|
<li class="area-list-item area-list-item--unremoveable">
|
2020-07-06 10:53:15 +01:00
|
|
|
|
{{ area.name }}
|
2020-07-06 10:53:14 +01:00
|
|
|
|
</li>
|
|
|
|
|
|
{% if loop.last %}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
2020-07-09 10:33:50 +01:00
|
|
|
|
{{ broadcast_message.template|string }}
|
2020-07-06 10:53:14 +01:00
|
|
|
|
|
2020-07-09 10:33:50 +01:00
|
|
|
|
{% call form_wrapper() %}
|
Make start time explicit when previewing a broadcast
We recently introduced a form control that lets user choose when a
broadcast ends.
Based on the most recent research participant, we think:
- there is a specific misunderstanding of what this control does
- there is a general low level of understanding of what a ‘broadcast’
means
People will try to understand what a ‘broadcast’ is by using mental
models they have for other kinds of messaging, for example text
messages.
Other kinds of messaging are one-to-one, i.e. they go from a sender to a
recipient. They are not ongoing in any way.
Emails and texts are sent at a time (and for all practicable purposes
are received at that same time). So, when we present the user with
a form that controls time, they might well assume it controls the time
when the message will be sent.
This is a feature we offer for sending messages using a spreadsheet, and
that’s where we’ve borrowed this pattern from.
We reinforce this assumption with the labelling of the form control. By
front-loading it with the word ‘When’ we are playing to the users
confirmation bias, i.e. they are interpreting the meaning of the control
in a way that confirms their prior beliefs about how messaging works.
So this commit does two things:
- re-labels the form to front-load the word ‘End’ not ‘When’
- adds text to the page explaining when the broadcast will start, so
there’s a chance of overriding that confirmation bias
If we can get users to go through this before sending a broadcast for
real, it could help them learn what a broadcast is, and how it differs
from sending text messages.
2020-07-27 17:25:13 +01:00
|
|
|
|
<h3 class="govuk-heading-s govuk-!-margin-top-6 govuk-!-margin-bottom-1">
|
|
|
|
|
|
Start time
|
|
|
|
|
|
</h3>
|
|
|
|
|
|
<p class="govuk-body govuk-!-margin-bottom-4">
|
|
|
|
|
|
Your broadcast will start when it’s approved by another member of your team.
|
|
|
|
|
|
</p>
|
2020-07-16 10:49:21 +01:00
|
|
|
|
{{ radio_select(
|
|
|
|
|
|
form.finishes_at,
|
Make start time explicit when previewing a broadcast
We recently introduced a form control that lets user choose when a
broadcast ends.
Based on the most recent research participant, we think:
- there is a specific misunderstanding of what this control does
- there is a general low level of understanding of what a ‘broadcast’
means
People will try to understand what a ‘broadcast’ is by using mental
models they have for other kinds of messaging, for example text
messages.
Other kinds of messaging are one-to-one, i.e. they go from a sender to a
recipient. They are not ongoing in any way.
Emails and texts are sent at a time (and for all practicable purposes
are received at that same time). So, when we present the user with
a form that controls time, they might well assume it controls the time
when the message will be sent.
This is a feature we offer for sending messages using a spreadsheet, and
that’s where we’ve borrowed this pattern from.
We reinforce this assumption with the labelling of the form control. By
front-loading it with the word ‘When’ we are playing to the users
confirmation bias, i.e. they are interpreting the meaning of the control
in a way that confirms their prior beliefs about how messaging works.
So this commit does two things:
- re-labels the form to front-load the word ‘End’ not ‘When’
- adds text to the page explaining when the broadcast will start, so
there’s a chance of overriding that confirmation bias
If we can get users to go through this before sending a broadcast for
real, it could help them learn what a broadcast is, and how it differs
from sending text messages.
2020-07-27 17:25:13 +01:00
|
|
|
|
show_now_as_default=False,
|
|
|
|
|
|
bold_legend=True
|
2020-07-16 10:49:21 +01:00
|
|
|
|
) }}
|
|
|
|
|
|
{{ page_footer('Submit for approval') }}
|
2020-07-09 10:33:50 +01:00
|
|
|
|
{% endcall %}
|
2020-07-06 10:53:14 +01:00
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|