svg
This commit is contained in:
22
templates/home/volume.html.twig
Normal file
22
templates/home/volume.html.twig
Normal 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 %}
|
Reference in New Issue
Block a user