blob: 58fe2a3aa3ea5acbad55efa1649bcde05bb7a78f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<table id="users">
[[ blueprints.forEach(function(blueprint){ ]]
<tr>
<td>
<a href="/staff/blueprints/[[- blueprint.slug ]]">[[- blueprint.name ]]</a>
</td>
<td class="editLinks">
<a href="/blueprint/[[- blueprint.slug ]]">[view]</a>
<!--
<a href="/api/rooms/[[- blueprint.slug ]]">[api]</a>
-->
</td>
<td>
<a href="/staff/users/[[- blueprint.user.username ]]">[[- blueprint.user.username ]]</a>
</td>
<td>
[[- blueprint.date ]]
</td>
</tr>
[[ }) ]]
</table>
|