mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-13 06:54:20 -05:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
{% call banner_wrapper(type='tour') %}
|
|
<p class="heading-medium">Try sending yourself this example</p>
|
|
<div class="grid-row bottom-gutter {% if help != '1' %}greyed-out-step{% endif %}">
|
|
<div class="grid-col-2">
|
|
<p class="heading-large">1.</p>
|
|
</div>
|
|
<div class="grid-col-10">
|
|
<p class="usa-body">
|
|
Every message is sent from a template
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="grid-row bottom-gutter {% if help != '2' %}greyed-out-step{% endif %}">
|
|
<div class="grid-col-2">
|
|
<p class="heading-large">2.</p>
|
|
</div>
|
|
<div class="grid-col-10">
|
|
<p class="usa-body">
|
|
The template pulls in the data you provide
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="grid-row bottom-gutter {% if help != '3' %}greyed-out-step{% endif %}">
|
|
<div class="grid-col-2">
|
|
<p class="heading-large">3.</p>
|
|
</div>
|
|
<div class="grid-col-10">
|
|
<p class="usa-body">
|
|
Notify delivers the message
|
|
</p>
|
|
{% if help == '3' %}
|
|
<a class="usa-link" href='{{ url_for(".go_to_dashboard_after_tour", service_id=current_service.id, example_template_id=template.id) }}'>
|
|
Now go to your dashboard
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endcall %}
|