mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-06 02:59:29 +00:00
29 lines
No EOL
1 KiB
Twig
29 lines
No EOL
1 KiB
Twig
{% 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 %}
|
|
|
|
{% 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 %}
|
|
|
|
{% 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 %} |