mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-04 18:25:04 +02:00
21 lines
610 B
Twig
21 lines
610 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">
|
|
{% include 'QuickLinks/_company.html.twig' %}
|
|
</div>
|
|
{% endblock %}
|
|
{% endembed %}
|
|
|
|
{% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'supplier': entity.iD}} %}
|
|
|
|
{% include "Parts/lists/_parts_list.html.twig" %}
|
|
|
|
{% endblock %}
|