2019-09-08 17:30:58 +02:00
|
|
|
{% extends "base.html.twig" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% trans %}parts_list.supplier.title{% endtrans %} {{ entity.name }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2020-05-27 21:42:20 +02:00
|
|
|
{% embed "Parts/lists/_info_card.html.twig" with {'header_label': 'supplier.label'} %}
|
|
|
|
{% block quick_links %}
|
|
|
|
<div class="mb-2">
|
2022-10-09 20:39:51 +02:00
|
|
|
{% import "components/quick_links.macro.html.twig" as quick_links %}
|
|
|
|
{{ quick_links.company(entity) }}
|
2020-05-27 21:42:20 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% endembed %}
|
2019-09-08 17:30:58 +02:00
|
|
|
|
2020-04-01 18:02:56 +02:00
|
|
|
{% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'supplier': entity.iD}} %}
|
|
|
|
|
2019-09-08 17:30:58 +02:00
|
|
|
{% include "Parts/lists/_parts_list.html.twig" %}
|
|
|
|
|
|
|
|
{% endblock %}
|