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

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

{{ project.description }}

{% if parent_project_ids %} This project 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 %}

Subprojects

{% endif %}

Members

{% if show_objects_link %} View Objects {% endif %} {% if not current_user.is_readonly %} {% if edit_project_form %} {% endif %} {% if add_subproject_form %} {% endif %} {% if remove_subproject_form %} {% endif %} {% if invite_user_form %} {% endif %} {% if invite_group_form %} {% endif %} {% if user_may_edit_permissions %} Edit Permissions {% endif %} {% endif %} {% if leave_project_form %}
{{ leave_project_form.csrf_token() }}
{% endif %} {% if not current_user.is_readonly %} {% if delete_project_form %} {% endif %} {% endif %} {% if edit_project_form %} {% endif %} {% if invite_user_form %} {% endif %} {% if invite_group_form %} {% endif %} {% if add_subproject_form %} {% endif %} {% if remove_subproject_form %} {% endif %} {% if delete_project_form %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% if show_edit_form %} {% endif %} {% endblock %}