gitea源码

1234567891011121314151617
  1. <table class="ui table">
  2. <thead>
  3. <tr>
  4. <th>{{ctx.Locale.Tr "org.members.member"}}</th>
  5. <th>{{ctx.Locale.Tr "org.worktime.time"}}</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. {{range $.WorktimeSumResult}}
  10. <tr>
  11. <td>{{svg "octicon-person"}} <a href="{{AppSubUrl}}/{{PathEscape .UserName}}">{{.UserName}}</a></td>
  12. <td>{{svg "octicon-clock"}} {{.SumTime | Sec2Hour}}</td>
  13. </tr>
  14. {{end}}
  15. </tbody>
  16. </table>