mirror of
https://github.com/go-gitea/gitea.git
synced 2025-02-21 19:55:23 +01:00
Dear Gitea team, first of all, thanks for the great work you're doing with this project. I'm planning to introduce Gitea at a client site, and noticed that while there is time recording, there are no project-manager-friendly reports to actually make use of that data, as were also mentioned by others in #4870 #8684 and #13531. Since I had a little time last weekend, I had put together something that I hope to be a useful contribution to this great project (while of course useful for me too). This PR adds a new "Worktime" tab to the Organisation level. There is a date range selector (by default set to the current month), and there are three possible views: - by repository, - by milestone, and - by team member. Happy to receive any feedback! There are several possible future improvements of course (predefined date ranges, charts, a member time sheet, matrix of repos/members, etc) but I hope that even in this relatively simple state this would be useful to lots of people. <img width="1161" alt="Screen Shot 2022-05-25 at 22 12 58" src="https://user-images.githubusercontent.com/118010/170366976-af00c7af-c4f3-4117-86d7-00356d6797a5.png"> Keep up the good work! Kristof --------- Co-authored-by: user <user@kk-git1> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
66 lines
2.5 KiB
Handlebars
66 lines
2.5 KiB
Handlebars
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository milestone-issue-list">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
<div class="tw-flex">
|
|
<h1 class="tw-mb-2">{{.Milestone.Name}}</h1>
|
|
{{if not .Repository.IsArchived}}
|
|
<div class="text right tw-flex-1">
|
|
{{if or .CanWriteIssues .CanWritePulls}}
|
|
{{if .Milestone.IsClosed}}
|
|
<a class="ui primary basic button link-action" href data-url="{{$.RepoLink}}/milestones/{{.MilestoneID}}/open">{{ctx.Locale.Tr "repo.milestones.open"}}
|
|
</a>
|
|
{{else}}
|
|
<a class="ui red basic button link-action" href data-url="{{$.RepoLink}}/milestones/{{.MilestoneID}}/close">{{ctx.Locale.Tr "repo.milestones.close"}}
|
|
</a>
|
|
{{end}}
|
|
<a class="ui button" href="{{.RepoLink}}/milestones/{{.MilestoneID}}/edit">{{ctx.Locale.Tr "repo.milestones.edit"}}</a>
|
|
{{end}}
|
|
<a class="ui primary button" href="{{.RepoLink}}/issues/new{{if .NewIssueChooseTemplate}}/choose{{end}}?milestone={{.MilestoneID}}">{{ctx.Locale.Tr "repo.issues.new"}}</a>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{if .Milestone.RenderedContent}}
|
|
<div class="markup content tw-mb-4">
|
|
{{.Milestone.RenderedContent}}
|
|
</div>
|
|
{{end}}
|
|
<div class="tw-flex tw-flex-col tw-gap-2">
|
|
<progress class="milestone-progress-big" value="{{.Milestone.Completeness}}" max="100"></progress>
|
|
<div class="tw-flex tw-gap-4">
|
|
<div classs="tw-flex tw-items-center">
|
|
{{$closedDate:= DateUtils.TimeSince .Milestone.ClosedDateUnix}}
|
|
{{if .IsClosed}}
|
|
{{svg "octicon-clock"}} {{ctx.Locale.Tr "repo.milestones.closed" $closedDate}}
|
|
{{else}}
|
|
|
|
{{if .Milestone.DeadlineString}}
|
|
<span{{if .IsOverdue}} class="text red"{{end}}>
|
|
{{svg "octicon-calendar"}}
|
|
{{DateUtils.AbsoluteShort (.Milestone.DeadlineString|DateUtils.ParseLegacy)}}
|
|
</span>
|
|
{{else}}
|
|
{{svg "octicon-calendar"}}
|
|
{{ctx.Locale.Tr "repo.milestones.no_due_date"}}
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|
|
<div class="tw-mr-2">{{ctx.Locale.Tr "repo.milestones.completeness" .Milestone.Completeness}}</div>
|
|
{{if .TotalTrackedTime}}
|
|
<div data-tooltip-content='{{ctx.Locale.Tr "tracked_time_summary"}}'>
|
|
{{svg "octicon-clock"}}
|
|
{{.TotalTrackedTime | Sec2Hour}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<div class="divider"></div>
|
|
|
|
{{template "repo/issue/filters" .}}
|
|
|
|
{{template "shared/issuelist" dict "." . "listType" "milestone"}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|