26 lines
812 B
Handlebars
26 lines
812 B
Handlebars
<table class="contributor-list {{if @loading 'loading'}}">
|
|
<thead>
|
|
</thead>
|
|
<tbody>
|
|
{{#each @contributorList as |c|}}
|
|
<tr role="button"
|
|
onclick={{action "openContributorDetails" c.contributor}}
|
|
class="{{if (is-current-user c.contributor) "current-user"}} {{if (eq c.contributor.id @selectedContributorId) "selected"}}">
|
|
<td class="person">
|
|
<UserAvatar @contributor={{c.contributor}} /> {{c.contributor.name}}
|
|
</td>
|
|
<td class="kredits">
|
|
<span class="amount">
|
|
{{#if @showUnconfirmedKredits}}
|
|
{{c.amountTotal}}
|
|
{{else}}
|
|
{{c.amountConfirmed}}
|
|
{{/if}}
|
|
</span>
|
|
<span class="symbol">₭S</span>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|