{% extends "base.html" %} {% from "components/icon.html" import Icon %} {% from "components/modal.html" import Modal %} {% from "components/selector.html" import Selector %} {% from "components/options_input.html" import OptionsInput %} {% block content %} {{ form.csrf_token }} {{ member.user.full_name }} {{ Selector(form.workspace_role) }} DOD ID: {{ member.user.dod_id }} Email: {{ member.user.email }} edit account details Manage Access Grant access to an environment Search by project name Search {% call Modal(name='rolesModal', dismissable=False) %} {% for choice in form.environment_role.choices %} {% if choice[0] != "" %} {% if choice[1].description %} {{ choice[1].name }} {{ choice[1].description }} {% else %} {{ choice[1].name }} {% endif %} {% endif %} {% endfor %} {% endcall %} {{ Icon('caret_down') }} {{ Icon('caret_right') }} Code.mil revoke all access Development no access set role Sandbox no accessset role Production Billingset role {{ Icon('caret_down') }} {{ Icon('caret_right') }} Digital Dojo no access Development no access set role Sandbox no accessset role Production no accessset role {% if is_new_member %}Create{% else %}Save{% endif %} {{ Icon('x') }} Cancel {% endblock %}