mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-04 18:25:04 +02:00
15 lines
426 B
Twig
15 lines
426 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block title %}
|
|
{% trans %}parts_list.supplier.title{% endtrans %} {{ entity.name }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "Parts/lists/_info_card.html.twig" with {'header_label': 'supplier.label'} %}
|
|
|
|
{% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'supplier': entity.iD}} %}
|
|
|
|
{% include "Parts/lists/_parts_list.html.twig" %}
|
|
|
|
{% endblock %}
|