8cc1b02d19
Adds a 3-pane layout option for showing details, as well as a dashboard sub-route for showing contributor details in the new details pane.
20 lines
586 B
Handlebars
20 lines
586 B
Handlebars
<tbody>
|
|
{{#each contributorList as |c|}}
|
|
<tr role="button" class={{if (is-current-user c.contributor) "current-user"}} {{action "openContributorDetails" c.contributor}}>
|
|
<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>
|