User Groups and Roles
This section lists your roles and groups. Roles and groups can only be changed by dashboard administrators in the appropriate place for the project.
Special User Permissions
This section shows projects that you have special access too. Your access to these projects can only be changed by project managers or dashboard administrators.
{% if projects|length > 0 %}
{% for group in projects %}
Project Name |
read |
update |
create |
delete |
manage |
{% for project in projects %}
{{ project["name"] }} |
{% for permission in ["read", "update", "create", "delete", "manage"] %}
{{ form["specialproject_"+project["id"]|string+"_"+permission] }}
|
{% endfor %}
{% endfor %}
{% endfor %}
{% else %}
You have no special project permissions.
{% endif %}