7236b2d2b3
Route, controller, links, selected property/styles, etc.
21 lines
658 B
Handlebars
21 lines
658 B
Handlebars
<tbody>
|
|
{{#each contributorList as |c|}}
|
|
<tr role="button" {{action "openContributorDetails" c.contributor}}
|
|
class="{{if (is-current-user c.contributor) "current-user"}} {{if (eq c.contributor.id selectedContributorId) "selected"}}">
|
|
<td class="person">
|
|
{{user-avatar 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>
|