初始提交: Gitea 项目代码

This commit is contained in:
root
2026-05-30 22:47:36 +08:00
commit f288f76350
6116 changed files with 776822 additions and 0 deletions
@@ -0,0 +1,9 @@
<tr>
<td colspan="{{.Colspan}}">
<div class="empty-placeholder">
{{svg "octicon-clock" 48}}
<h2>{{ctx.Locale.Tr "org.worktime.empty"}}</h2>
<p>{{ctx.Locale.Tr "org.worktime.empty_description"}}</p>
</div>
</td>
</tr>
+18
View File
@@ -0,0 +1,18 @@
<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>
{{else}}
{{template "org/worktime/empty_placeholder" dict "Colspan" 2}}
{{end}}
</tbody>
</table>
@@ -0,0 +1,30 @@
<table class="ui table">
<thead>
<tr>
<th>{{ctx.Locale.Tr "repository"}}</th>
<th>{{ctx.Locale.Tr "repo.milestone"}}</th>
<th>{{ctx.Locale.Tr "org.worktime.time"}}</th>
</tr>
</thead>
<tbody>
{{range $.WorktimeSumResult}}
<tr>
<td>
{{if not .HideRepoName}}
{{svg "octicon-repo"}} <a href="{{$.Org.HomeLink}}/{{PathEscape .RepoName}}/issues">{{.RepoName}}</a>
{{end}}
</td>
<td>
{{if .MilestoneName}}
{{svg "octicon-milestone"}} <a href="{{$.Org.HomeLink}}/{{PathEscape .RepoName}}/milestone/{{.MilestoneID}}">{{.MilestoneName}}</a>
{{else}}
-
{{end}}
</td>
<td>{{svg "octicon-clock"}} {{.SumTime | Sec2Hour}}</td>
</tr>
{{else}}
{{template "org/worktime/empty_placeholder" dict "Colspan" 3}}
{{end}}
</tbody>
</table>
+18
View File
@@ -0,0 +1,18 @@
<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>