This commit is contained in:
2025-07-27 16:22:54 +02:00
parent 4378f06c05
commit 8127d6e830
12 changed files with 1116 additions and 46 deletions

View File

@ -0,0 +1,22 @@
{% extends 'base.html.twig' %}
{% block localstyle%}
{% endblock %}
{% block body %}
<div style="display:flex; flex-direction: column">
{% if volume is empty %}
{% for volume in volumes %}
<div>
<a href="{{path("app_volume",{volume:volume.id})}}">{{ volume.id }}</a>
</div>
{% endfor %}
{% else %}
{% endif %}
</div>
{% endblock %}
{% block localscript %}
{% endblock %}