Vulcan/client/templates/users.html
2012-09-19 10:15:03 +09:00

25 lines
No EOL
462 B
HTML

<template name="users">
<div class="grid">
<div class="user-table grid-block">
<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>
<td>Is Admin?</td>
</tr>
</thead>
<tbody>
{{#each users}}
{{> user_item}}
{{/each}}
</tbody>
</table>
</div>
</div>
</template>