mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
23 lines
684 B
HTML
23 lines
684 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/page-header.html" import page_header %}
|
||
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
||
|
||
{% block service_page_title %}
|
||
You must specify at least one permission for the user.
|
||
{% endblock %}
|
||
|
||
{% block backLink %}
|
||
{{ usaBackLink({ "href": url_for('main.manage_users', service_id=current_service.id) }) }}
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
{{ page_header('This person has no permissions') }}
|
||
|
||
<p class="usa-body">
|
||
Your invited user currently has no permissions for
|
||
‘{{ current_service.name }}’. Please specify grant some permissions to the user.
|
||
</p>
|
||
|
||
{% endblock %}
|