This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/group/members.js.handlebars
2014-02-07 13:46:59 -05:00

23 lines
479 B
Handlebars

{{#if model}}
<table class='group-members'>
<tr>
<th colspan="3" class="seen">{{i18n last_seen}}</th>
</tr>
{{#each model}}
<tr>
<td class='avatar'>
{{avatar this imageSize="large"}}
</td>
<td>
<h3>{{#link-to 'user' this}}{{username}}{{/link-to}}</h3>
<p>{{name}}</p>
</td>
<td>
<span class='last-seen-at'>{{date last_seen_at}}</span>
</td>
</tr>
</div>
{{/each}}
</table>
{{/if}}