mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-15 17:37:30 +01:00
21 lines
403 B
HTML
21 lines
403 B
HTML
<html>
|
|
<body>
|
|
|
|
<h2>[[ __("folder") ]]: [[space.name]]</h2>
|
|
<table class="table table-striped" >
|
|
<tr>
|
|
<th>[[__("created")]]</th>
|
|
<th>[[__("name")]]</th>
|
|
<th>[[__("link")]]</th>
|
|
</tr>
|
|
{% for s in subspaces %}
|
|
<tr>
|
|
<td>[[ s.created_at | date('d.m.Y H:i') ]]</td>
|
|
<td>[[ s.name ]]</td>
|
|
<td>[[ s.ae_link ]]</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</body>
|
|
</html>
|