2020-06-08 11:19:58 +01:00
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2021-01-08 10:56:59 +00:00
|
|
|
|
This person has already received an invite
|
2020-06-08 11:19:58 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
{{ page_header(
|
2021-01-08 10:56:59 +00:00
|
|
|
|
'This person has already received an invite',
|
2020-06-08 11:19:58 +01:00
|
|
|
|
back_link=url_for('main.manage_users', service_id=current_service.id)
|
|
|
|
|
|
) }}
|
|
|
|
|
|
|
|
|
|
|
|
<p class="govuk-body">
|
2021-01-08 10:56:59 +00:00
|
|
|
|
{{ 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 %}
|