2020-08-03 13:37:34 +01:00
|
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
|
|
|
|
|
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
2020-08-25 11:31:25 +01:00
|
|
|
|
The phone will make a loud alarm noise, even if it’s set on silent.
|
2020-08-03 13:37:34 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% set mainClasses = "govuk-!-padding-top-0 govuk-!-padding-bottom-0" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
|
|
<div class="banner-tour banner-tour-no-fixed-height govuk-!-margin-top-0">
|
|
|
|
|
|
<div class="govuk-grid-row">
|
|
|
|
|
|
<div class="govuk-grid-column-one-half">
|
|
|
|
|
|
<h1 class="heading-medium">
|
2020-08-25 11:31:25 +01:00
|
|
|
|
The phone will make a loud alarm noise, even if it’s set on silent.
|
2020-08-03 13:37:34 +01:00
|
|
|
|
</h1>
|
2020-08-19 14:54:50 +01:00
|
|
|
|
<p class="govuk-body heading-medium">
|
|
|
|
|
|
<a class="govuk-link govuk-link--no-visited-state" href='{{ url_for(".broadcast_tour", service_id=current_service.id, step_index=4) }}'>
|
|
|
|
|
|
Continue
|
2020-08-03 13:37:34 +01:00
|
|
|
|
</a>
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="govuk-grid-column-one-half">
|
|
|
|
|
|
<img src="{{ asset_url('images/broadcast-tour/3.png') }}" alt="">
|
2020-08-25 11:31:25 +01:00
|
|
|
|
<link rel="preload" href="{{ asset_url('images/broadcast-tour/4.png') }}" as="image">
|
2020-08-03 13:37:34 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|