Files
notifications-admin/app/templates/views/edit-user-permissions.html
Nicholas Staples f3689cc113 Functionality added and all tests working.
Update correct use of permissions form.
2016-03-23 10:56:14 +00:00

33 lines
780 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
Manage users GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
{{ user.name or user.email_localpart }}
</h1>
<p>
{{ user.email_address }}
</p>
<div class="grid-row">
<form method="post" class="column-three-quarters">
{% include 'views/manage-users/permissions.html' %}
{{ page_footer(
'Save',
delete_link=url_for('.remove_user_from_service', service_id=service_id, user_id=user.id) if user or None,
delete_link_text='Remove user from service'
) }}
</form>
</div>
{% endblock %}