2023-11-24 19:35:44 +01:00
|
|
|
{% extends "parts/edit/edit_part_info.html.twig" %}
|
|
|
|
|
|
|
|
|
|
{# @var merge_other \App\Entity\Parts\Part #}
|
|
|
|
|
|
|
|
|
|
{% block card_border %}border-info{% endblock %}
|
|
|
|
|
{% block card_type %}bg-info text-bg-info{% endblock %}
|
|
|
|
|
|
2025-08-02 20:40:37 +02:00
|
|
|
{% block before_card %}
|
|
|
|
|
{% if bulk_job and jobId %}
|
|
|
|
|
<div class="alert alert-info mb-3">
|
|
|
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
|
|
|
<div>
|
|
|
|
|
<i class="fas fa-cloud-download fa-fw" aria-hidden="true"></i>
|
|
|
|
|
{% trans %}info_providers.bulk_import.editing_part{% endtrans %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2023-11-24 19:35:44 +01:00
|
|
|
{% block title %}
|
|
|
|
|
{% trans %}info_providers.update_part.title{% endtrans %}: {{ merge_old_name }}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block card_title %}
|
|
|
|
|
<i class="fas fa-cloud-arrow-down" aria-hidden="true"></i>
|
|
|
|
|
{% trans %}info_providers.update_part.title{% endtrans %}:
|
|
|
|
|
<b><a class="text-bg-info" href="{{ entity_url(part) }}">{{ merge_old_name }}</a></b>
|
|
|
|
|
{% endblock %}
|