Vulcan/client/templates/users.html

25 lines
462 B
HTML
Raw Normal View History

2012-09-18 11:49:17 +09:00
<template name="users">
2012-09-18 12:21:43 +09:00
<div class="grid">
2012-09-18 15:43:37 +09:00
<div class="user-table grid-block">
2012-09-18 12:21:43 +09:00
<h1>Users</h1>
<table>
<thead>
<tr>
<td colspan="2">Name</td>
<td>Member since</td>
<td>Email</td>
<td>Posts</td>
<td>Comments</td>
<td>Karma</td>
2012-09-19 10:15:03 +09:00
<td>Is Admin?</td>
</tr>
</thead>
<tbody>
{{#each users}}
{{> user_item}}
{{/each}}
</tbody>
2012-09-18 12:21:43 +09:00
</table>
</div>
</div>
2012-09-18 11:49:17 +09:00
</template>