Files
notifications-admin/app/templates/partials/tour.html
Jonathan Bobel 348e29fb40 - Removed links to the gov uk stylesheets
- Deleted /stylesheets folder
- Removed sass build from gulpfile
- Changed gov links to usa links
- Changed other govuk styles, like breadcrumbs
- Changed name of uk_components file to us_components
- Fixed a few tests that broke on account of the changes
2023-08-08 16:19:17 -04:00

41 lines
1.5 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="govuk-grid-row bottom-gutter {% if help != '1' %}greyed-out-step{% endif %}">
<div class="govuk-grid-column-one-sixth">
<p class="heading-large">1.</p>
</div>
<div class="govuk-grid-column-five-sixths">
<p class="govuk-body">
Every message is sent from a template
</p>
</div>
</div>
<div class="govuk-grid-row bottom-gutter {% if help != '2' %}greyed-out-step{% endif %}">
<div class="govuk-grid-column-one-sixth">
<p class="heading-large">2.</p>
</div>
<div class="govuk-grid-column-five-sixths">
<p class="govuk-body">
The template pulls in the data you provide
</p>
</div>
</div>
<div class="govuk-grid-row bottom-gutter {% if help != '3' %}greyed-out-step{% endif %}">
<div class="govuk-grid-column-one-sixth">
<p class="heading-large">3.</p>
</div>
<div class="govuk-grid-column-five-sixths">
<p class="govuk-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 %}