gitea源码

table_repos.tmpl 411B

1234567891011121314151617
  1. <table class="ui table">
  2. <thead>
  3. <tr>
  4. <th>{{ctx.Locale.Tr "repository"}}</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-repo"}} <a href="{{$.Org.HomeLink}}/{{PathEscape .RepoName}}/issues">{{.RepoName}}</a></td>
  12. <td>{{svg "octicon-clock"}} {{.SumTime | Sec2Hour}}</td>
  13. </tr>
  14. {{end}}
  15. </tbody>
  16. </table>