initial commit.
This commit is contained in:
20
views/space_list.html
Normal file
20
views/space_list.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user