mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-04 18:25:04 +02:00
22 lines
683 B
Twig
22 lines
683 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block title %}
|
|
{% trans %}parts_list.supplier.title{% endtrans %} {{ entity.name }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% embed "parts/lists/_info_card.html.twig" with {'header_label': 'supplier.label'} %}
|
|
{% block quick_links %}
|
|
<div class="mb-2">
|
|
{% import "components/quick_links.macro.html.twig" as quick_links %}
|
|
{{ quick_links.company(entity) }}
|
|
</div>
|
|
{% endblock %}
|
|
{% endembed %}
|
|
|
|
{% include "parts/lists/_action_bar.html.twig" with {'url_options': {'supplier': entity.iD}} %}
|
|
|
|
{% include "parts/lists/_parts_list.html.twig" %}
|
|
|
|
{% endblock %}
|