Files
notifications-admin/app/templates/views/templates/start-tour.html
Katie Smith f3bb93f460 Replace straightforward buttons and links styled like buttons
This replaces the buttons that aren't part of a macro and that we don't
need to write additional styles for with their govuk-frontend equivalent.

There were some links that were styled to look like buttons, so these
have also been replaced with the new govuk-frontend macro.

There was one button on the `choose-account.html` template that was in a
section of code that was never reached - this has been deleted.
2020-02-17 08:05:05 +00:00

25 lines
565 B
HTML

{% extends "withnav_template.html" %}
{% from "components/api-key.html" import api_key %}
{% from "components/button/macro.njk" import govukButton %}
{% block service_page_title %}
{{ template.name }}
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">{{ template.name }}</h1>
{{ template|string }}
<div class="page-footer">
{{ govukButton({
"element": "a",
"text": "Continue",
"href": url_for('.send_test', service_id=current_service.id, template_id=template.id, help=2),
}) }}
</div>
{% endblock %}