Refine broadcast tour based on research learnings

We’ve shown the broadcast tour to a few users now. We’ve learned what
concepts about broadcasting are and aren’t getting through.

So what we’re emphasising here is:
- the thing that appears on the phone (the ‘emergency alert’) not the
  technology (a ‘broadcast’)
- how it’s different to other channels of messaging, eg text

We’ve generally spent a lot more time on the content and illustrations
this time around, so overall it’s should be clearer and shorter.

This also expands the communication of training mode into the header,
so it’s visible on every page (we can add another one for ‘live’
services later on).
This commit is contained in:
Chris Hill-Scott
2020-08-19 14:54:50 +01:00
parent 0dfbc1df67
commit 8578e64cc9
13 changed files with 3008 additions and 2596 deletions

View File

@@ -23,7 +23,7 @@ from app.utils import service_has_permission, user_has_permissions
@user_has_permissions()
@service_has_permission('broadcast')
def broadcast_tour(service_id, step_index):
if step_index not in (1, 2, 3):
if step_index not in (1, 2, 3, 4):
abort(404)
return render_template(
f'views/broadcast/tour/{step_index}.html'