mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-20 19:05:14 +02:00
Allow to show parts in a storelocation or an supplier.
This commit is contained in:
parent
748905c325
commit
31e89e2e36
8 changed files with 107 additions and 6 deletions
13
templates/Parts/lists/store_location_list.html.twig
Normal file
13
templates/Parts/lists/store_location_list.html.twig
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% extends "base.html.twig" %}
|
||||
|
||||
{% block title %}
|
||||
{% trans %}parts_list.storelocation.title{% endtrans %} {{ entity.name }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
{% include "Parts/lists/_info_card.html.twig" with {'header_label': 'storelocation.label'} %}
|
||||
|
||||
{% include "Parts/lists/_parts_list.html.twig" %}
|
||||
|
||||
{% endblock %}
|
13
templates/Parts/lists/supplier_list.html.twig
Normal file
13
templates/Parts/lists/supplier_list.html.twig
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% 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/_parts_list.html.twig" %}
|
||||
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue