mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-17 04:59:37 -04:00
* Updated header and footer * Updated fonts * Moved files around and updated gulpfile to correct the build process when it goes to production * Adjusted grid templating * Added images to assets * Update app/templates/components/uk_components/footer/template.njk Co-authored-by: Steven Reilly <stvnrlly@users.noreply.github.com>
22 lines
603 B
HTML
22 lines
603 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/page-header.html" import page_header %}
|
||
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
|
||
|
||
{% block service_page_title %}
|
||
This person is already a team member
|
||
{% endblock %}
|
||
|
||
{% block backLink %}
|
||
{{ govukBackLink({ "href": url_for('main.manage_users', service_id=current_service.id) }) }}
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
{{ page_header('This person is already a team member') }}
|
||
|
||
<p>
|
||
{{ user_to_invite.name }} is already member of ‘{{ current_service.name }}’.
|
||
</p>
|
||
|
||
{% endblock %}
|