mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
28 lines
No EOL
671 B
HTML
28 lines
No EOL
671 B
HTML
<template name="users">
|
|
{{#if isAdmin true}}
|
|
<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 Invited?</td>
|
|
<td>Is Admin?</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each users}}
|
|
{{> user_item}}
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</template> |