aboutsummaryrefslogtreecommitdiffstats
path: root/templates/org/worktime/table_members.tmpl
blob: a59d1941d8490f1e4a9375d0a15a6dfb1c6dcd8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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>