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