{% extends "base.html" %} {% block title %}{{ _('Project Group') }} #{{ project.id }}: {{ project.name | get_translated_text }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block template_values %} {% do set_template_value("min_grant_user_warning", _('At least one user needs to have grant permissions for this project group.')) %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}

{{ _('Project Group') }} #{{ project.id }}: {{ project.name | get_translated_text }}

{{ _('Permissions') }}

{% set user_may_edit = (permissions_form is not none) %} {% if user_may_edit %}
{% endif %} {% set form_url = url_for('.update_project_permissions', project_id=project.id) %} {% set fixed_user_permissions = {} %} {% set show_administrators = False %} {% set show_instrument_scientists = False %} {% set show_all_users = False %} {% set read_permissions_description = _('Permission to view this project group\'s objects and their properties, files and comments.') %} {% set write_permissions_description = _('Permission to edit this project group and its objects and their properties and add files and comments. Includes Read permissions.') %} {% set grant_permissions_description = _('Permission to grant permissions to other users. Includes Write permissions.') %} {% include "permissions/permissions.html" %} {% if user_may_edit %}
{{ _('Cancel') }}
{% endif %} {% endblock %}