gitea/templates/org/worktime/table_members.tmpl

17 lines
409 B
Handlebars

<table class="ui table">
<thead>
<tr>
<th>{{ctx.Locale.Tr "org.members.member"}}</th>
<th>{{ctx.Locale.Tr "org.worktime.time"}}</th>
</tr>
</thead>
<tbody>
{{range $.WorktimeSumResult}}
<tr>
<td>{{svg "octicon-person"}} <a href="{{AppSubUrl}}/{{PathEscape .UserName}}">{{.UserName}}</a></td>
<td>{{svg "octicon-clock"}} {{.SumTime | Sec2Hour}}</td>
</tr>
{{end}}
</tbody>
</table>