mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-03 17:55:03 +02:00
16 lines
386 B
Twig
16 lines
386 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block title %}
|
|
{% trans %}parts_list.all.title{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="accordion mb-3">
|
|
{% include "Parts/lists/_filter.html.twig" %}
|
|
</div>
|
|
|
|
{% include "Parts/lists/_action_bar.html.twig" with {'url_options': {}} %}
|
|
{% include "Parts/lists/_parts_list.html.twig" %}
|
|
|
|
{% endblock %}
|