2018-06-12 16:17:20 +01:00
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
|
|
|
|
|
|
{% call banner_wrapper(type='tour') %}
|
2025-10-06 09:38:54 -04:00
|
|
|
<p class="font-heading-lg">Try sending yourself this example</p>
|
|
|
|
|
<div class="grid-row margin-bottom-3 {% if help != '1' %}text-base-dark opacity-50{% endif %}">
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-2">
|
2025-10-06 09:38:54 -04:00
|
|
|
<p class="font-heading-xl">1.</p>
|
2018-06-12 16:17:20 +01:00
|
|
|
</div>
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-10">
|
2023-08-25 11:49:13 -04:00
|
|
|
<p class="usa-body">
|
2018-06-12 16:17:20 +01:00
|
|
|
Every message is sent from a template
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-10-06 09:38:54 -04:00
|
|
|
<div class="grid-row margin-bottom-3 {% if help != '2' %}text-base-dark opacity-50{% endif %}">
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-2">
|
2025-10-06 09:38:54 -04:00
|
|
|
<p class="font-heading-xl">2.</p>
|
2018-06-12 16:17:20 +01:00
|
|
|
</div>
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-10">
|
2023-08-25 11:49:13 -04:00
|
|
|
<p class="usa-body">
|
2018-06-12 16:17:20 +01:00
|
|
|
The template pulls in the data you provide
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-10-06 09:38:54 -04:00
|
|
|
<div class="grid-row margin-bottom-3 {% if help != '3' %}text-base-dark opacity-50{% endif %}">
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-2">
|
2025-10-06 09:38:54 -04:00
|
|
|
<p class="font-heading-xl">3.</p>
|
2018-06-12 16:17:20 +01:00
|
|
|
</div>
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-10">
|
2023-08-25 11:49:13 -04:00
|
|
|
<p class="usa-body">
|
2018-06-12 16:17:20 +01:00
|
|
|
Notify delivers the message
|
|
|
|
|
</p>
|
|
|
|
|
{% if help == '3' %}
|
2023-08-08 16:19:17 -04:00
|
|
|
<a class="usa-link" href='{{ url_for(".go_to_dashboard_after_tour", service_id=current_service.id, example_template_id=template.id) }}'>
|
2018-06-12 16:17:20 +01:00
|
|
|
Now go to your dashboard
|
|
|
|
|
</a>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endcall %}
|