{% extends "base.html" %} {% block title %}Project Group #{{ project.id }}: {{ project.name }} — {{ service_name }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block content %}
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 %}