{% extends "base.html" %} {% block title %}Project Group #{{ project.id }}: {{ project.name }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block content %}

Project Group #{{ project.id }}: {{ project.name }}

{% if object_id is not none %}

This project group is linked to {% if object_action %}{{ object_action.type.object_name }}{% else %}Object{% endif %} #{{ object_id }}{% if object is not none %}: {{ object.data.name.text }}{% endif %}.

{% endif %}

{{ project.description }}

{% if not config['DISABLE_SUBPROJECTS'] %} {% if parent_project_ids %} This project group is a part of {% if parent_project_ids | length > 2 %} {% for project_id in parent_project_ids[:-2] %} {% with project = get_project(project_id) %} {{ project.name }}, {% endwith %} {% endfor %} {% endif %} {% if parent_project_ids | length > 1 %} {% with project = get_project(parent_project_ids[-2]) %} {{ project.name }} and {% endwith %} {% endif %} {% if parent_project_ids | length > 0 %} {% with project = get_project(parent_project_ids[-1]) %} {{ project.name }}. {% endwith %} {% endif %} {% endif %} {% if child_project_ids %}

Child Project Groups

{% endif %} {% endif %}

Members

{% if show_invitation_log %} {% with all_invitations = project_invitations %} {% include "invitation_log.html" %} {% endwith %} {% elif project_invitations %} {% with pending_invitations = project_invitations %} {% include "pending_invitations.html" %} {% endwith %} {% endif %}
{% if show_objects_link %}
View Objects
{% endif %} {% if not current_user.is_readonly %} {% if edit_project_form %} {% endif %} {% if not config['DISABLE_SUBPROJECTS'] %} {% if add_subproject_form %} {% endif %} {% if remove_subproject_form %} {% endif %} {% endif %} {% if invite_user_form %} {% endif %} {% if invite_group_form %} {% endif %} {% if user_may_edit_permissions %} Edit Permissions {% endif %} {% endif %} {% if not current_user.is_readonly and not object_id and object_link_form %} {% endif %} {% if not current_user.is_readonly and object_id and object_link_form %} {% endif %} {% if leave_project_form %}
{{ leave_project_form.csrf_token() }}
{% endif %} {% if not current_user.is_readonly %} {% if delete_project_form %} {% endif %} {% endif %}
{% if not current_user.is_readonly and object_id and object_link_form %} {% endif %} {% if not current_user.is_readonly and not object_id and object_link_form %} {% endif %} {% if edit_project_form %} {% endif %} {% if invite_user_form %} {% endif %} {% if invite_group_form %} {% endif %} {% if not config['DISABLE_SUBPROJECTS'] %} {% if add_subproject_form %} {% endif %} {% if remove_subproject_form %} {% endif %} {% endif %} {% if delete_project_form %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% if object_link_form and not object_id and not current_user.is_readonly and config['LOAD_OBJECTS_IN_BACKGROUND'] %} {% endif %} {% if show_edit_form %} {% endif %} {% endblock %}