Files
notifications-admin/app/templates/views/user-already-invited.html
T

23 lines
688 B
HTML
Raw Normal View History

2020-06-08 11:19:58 +01:00
{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
2023-08-08 16:19:17 -04:00
{% from "components/us_components/back-link/macro.njk" import govukBackLink %}
2020-06-08 11:19:58 +01:00
{% block service_page_title %}
This person has already received an invite
2020-06-08 11:19:58 +01:00
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('main.manage_users', service_id=current_service.id) }) }}
{% endblock %}
2020-06-08 11:19:58 +01:00
{% block maincolumn_content %}
{{ page_header('This person has already received an invite') }}
2020-06-08 11:19:58 +01:00
2023-06-06 15:28:24 -04:00
<p class="usa-body">
{{ user_to_invite.name }} has not accepted their invitation to
{{ current_service.name }} yet. You do not need to do anything.
2020-06-08 11:19:58 +01:00
</p>
{% endblock %}