mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 08:08:26 -04:00
When we converted textboxes on Notify to govuk-frontend design system
style with @tombye , we did not remove the imports.
This work is now done in this commit.
Some things that will still stay in our repo for now:
textbox macro in our components folder and associated css
textboxes which are really textarea fields (🤷 how do they work)
textboxes on the styleguide page
We should revisit this when we convert textarea fields
to govuk-frontend.
65 lines
2.1 KiB
HTML
65 lines
2.1 KiB
HTML
{% extends "org_template.html" %}
|
|
{% from "components/table.html" import list_table, row, field, hidden_field_heading %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/live-search.html" import live_search %}
|
|
{% from "components/button/macro.njk" import govukButton %}
|
|
|
|
{% block org_page_title %}
|
|
Team members
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-medium">
|
|
Team members
|
|
</h1>
|
|
|
|
{% if show_search_box %}
|
|
<div data-module="autofocus">
|
|
{{ live_search(target_selector='.user-list-item', show=True, form=form) }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="user-list">
|
|
{% for user in users %}
|
|
<div class="user-list-item">
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-three-quarters">
|
|
<h2 class="user-list-item-heading">
|
|
{%- if user.name -%}
|
|
<span class="heading-small">{{ user.name }}</span> 
|
|
{%- endif -%}
|
|
<span class="hint">
|
|
{%- if user.status == 'pending' -%}
|
|
{{ user.email_address }} (invited)
|
|
{%- elif user.status == 'cancelled' -%}
|
|
{{ user.email_address }} (cancelled invite)
|
|
{%- elif user.id == current_user.id -%}
|
|
(you)
|
|
{% else %}
|
|
{{ user.email_address }}
|
|
{% endif %}
|
|
</span>
|
|
</h2>
|
|
</div>
|
|
<div class="govuk-grid-column-one-quarter">
|
|
{% if user.status == 'pending' %}
|
|
<a class="govuk-link govuk-link--no-visited-state user-list-edit-link" href="{{ url_for('.cancel_invited_org_user', org_id=current_org.id, invited_user_id=user.id)}}">Cancel invitation</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="js-stick-at-bottom-when-scrolling">
|
|
{{ govukButton({
|
|
"element": "a",
|
|
"text": "Invite team member",
|
|
"href": url_for('.invite_org_user', org_id=current_org.id),
|
|
"classes": "govuk-button--secondary"
|
|
}) }}
|
|
</div>
|
|
|
|
{% endblock %}
|