{% extends "main_card.html.twig" %} {% block title %} {% trans %}part.info.title{% endtrans %} {{ part.name }} {% endblock %} {% block card_type %} {% if timeTravel == null %} bg-primary text-white {% else %} bg-primary-striped text-white {% endif %} {% endblock %} {% block card_title %} {% trans %}part.info.title{% endtrans %} "{{ part.name }}" {% if timeTravel != null %} ({{ timeTravel | format_datetime('short') }}) {% endif %} {% if part.projectBuildPart %} ({{ entity_type_label(part.builtProject) }}: {{ part.builtProject.name }}) {% endif %} {% trans %}id.label{% endtrans %}: {{ part.id }} {% if part.ipn is not empty %}({{ part.ipn }}){% endif %} {% endblock %} {% block card_content %}
{% include "parts/info/_picture.html.twig" %}
{% include "parts/info/_main_infos.html.twig" %}
{% include "parts/info/_sidebar.html.twig" %}
{% if part.comment is not empty %}
{{ part.comment|format_markdown }}
{% endif %}
{% include "parts/info/_part_lots.html.twig" %}
{% if part.attachments is not empty %}
{% include "parts/info/_attachments_info.html.twig" %}
{% endif %} {% if part.orderdetails is not empty %}
{% include "parts/info/_order_infos.html.twig" %}
{% endif %} {% if part.associatedPartsAll is not empty %}
{% include "parts/info/_associations.html.twig" %}
{% endif %}
{% include "parts/info/_projects.html.twig" %}
{% include "parts/info/_history.html.twig" %}
{% include "parts/info/_tools.html.twig" %}
{% if part.parameters is not empty or description_params is not empty or comment_params is not empty %}
{% include "parts/info/_specifications.html.twig" %}
{% endif %}
{% include "parts/info/_extended_infos.html.twig" %}
{% endblock %}