file-explorer/templates/_partials/_table.html.twig
Constantin Simonis e70c6db10f
All checks were successful
build / build (pull_request) Successful in 3m57s
add table for displaying dir content
2024-12-04 19:39:37 +01:00

13 lines
318 B
Twig

<table class="table table-striped table-bordered w-75 mt-5">
<thead>
<tr>
<td>Expand</td>
<th>Name</th>
<th>Size</th>
</thead>
<tbody>
{% for dirContent in content %}
{% include '_partials/_row.html.twig' with {file: dirContent} %}
{% endfor %}
</tbody>
</table>