Files
2026-05-30 22:47:36 +08:00

19 lines
488 B
Handlebars

<table class="ui table">
<thead>
<tr>
<th>{{ctx.Locale.Tr "repository"}}</th>
<th>{{ctx.Locale.Tr "org.worktime.time"}}</th>
</tr>
</thead>
<tbody>
{{range $.WorktimeSumResult}}
<tr>
<td>{{svg "octicon-repo"}} <a href="{{$.Org.HomeLink}}/{{PathEscape .RepoName}}/issues">{{.RepoName}}</a></td>
<td>{{svg "octicon-clock"}} {{.SumTime | Sec2Hour}}</td>
</tr>
{{else}}
{{template "org/worktime/empty_placeholder" dict "Colspan" 2}}
{{end}}
</tbody>
</table>