{% extends "auth/base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block page_content %}
Project Information

This section gives information on which user and group owns the project. Only dashboard admin and group managers can manage edit group members and access. This must be done in the admin section of the dashboard.

Project ID {{ project.id }}
Project Name {{ project.name }}
Project Owner {{ project.owner.username }}
Project Group {{ project.group.name }}
{{ form.csrf_token }}
{{ project.name }}: Special Permissions
Set Special User Permissions

Give individual dashboard users access and permissions to the project. This section will only reflect special user permissions. Your username is listed first, be careful managing your access.

{% for user in users %} {% for permission in ["read", "update", "create", "delete", "manage"] %} {% endfor %} {% endfor %}
User Name read update create delete manage
{{ user["username"] }} {{ form["user_"+user["id"]|string+"_"+permission] }}
{{ wtf.form_field(form.submit, class="btn btn-primary form-control") }}
{% endblock %}