{% extends "main_card.html.twig" %} {% import "helper.twig" as helper %} {% block title %} {% trans %}project.info.title{% endtrans %}: {{ project.name }} {% endblock %} {% block content %} {{ helper.breadcrumb_entity_link(project) }} {{ parent() }} {% endblock %} {% block card_title %} {% if project.masterPictureAttachment is not null and attachment_manager.isFileExisting(project.masterPictureAttachment) %} {% else %} {{ helper.entity_icon(project, "me-1") }} {% endif %} {% trans %}project.info.title{% endtrans %}: {{ project.name }} {% endblock %} {% block card_content %}
{% include "projects/info/_info.html.twig" %}
{% if project.children is not empty %}
{% include "projects/info/_subprojects.html.twig" %}
{% endif %}
{% include "projects/info/_bom.html.twig" %}
{% include "projects/info/_builds.html.twig" %}
{% include "parts/info/_attachments_info.html.twig" with {"part": project} %}
{% for name, parameters in project.groupedParameters %} {% if name is not empty %}
{{ name }}
{% endif %} {{ helper.parameters_table(project.parameters) }} {% endfor %}
{% endblock %}