2020-11-25 12:20:40 +01:00
|
|
|
<div class="issue list">
|
2022-08-25 23:55:52 +02:00
|
|
|
{{$approvalCounts := .ApprovalCounts}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{range .Issues}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<li class="item gt-df gt-py-3">
|
2023-03-30 17:02:47 +02:00
|
|
|
<div class="issue-item-left gt-df gt-items-start">
|
2020-11-25 12:20:40 +01:00
|
|
|
{{if $.CanWriteIssuesOrPulls}}
|
2023-03-30 17:02:47 +02:00
|
|
|
<input type="checkbox" autocomplete="off" class="issue-checkbox gt-mt-2 gt-mr-4" data-issue-id={{.ID}} aria-label="{{$.locale.Tr "repo.issues.action_check"}} "{{.Title}}"">
|
2020-11-25 12:20:40 +01:00
|
|
|
{{end}}
|
|
|
|
<div class="issue-item-icon">
|
2023-05-25 04:31:26 +02:00
|
|
|
{{template "shared/issueicon" .}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="issue-item-main gt-f1 gt-fc gt-df">
|
2020-12-30 00:48:28 +01:00
|
|
|
<div class="issue-item-top-row">
|
2023-06-11 04:13:08 +02:00
|
|
|
<a class="title gt-no-underline issue-title" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">{{RenderEmoji $.Context .Title | RenderCodeBlock}}</a>
|
2021-12-18 06:29:00 +01:00
|
|
|
{{if .IsPull}}
|
2022-04-27 00:40:01 +02:00
|
|
|
{{if (index $.CommitStatuses .PullRequest.ID)}}
|
|
|
|
{{template "repo/commit_statuses" dict "Status" (index $.CommitLastStatus .PullRequest.ID) "Statuses" (index $.CommitStatuses .PullRequest.ID) "root" $}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{end}}
|
2021-12-18 06:29:00 +01:00
|
|
|
{{end}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<span class="labels-list gt-ml-2">
|
2020-11-29 04:26:03 +01:00
|
|
|
{{range .Labels}}
|
2023-03-05 22:59:05 +01:00
|
|
|
<a href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}{{if ne $.listType "milestone"}}&milestone={{$.MilestoneID}}{{end}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}">{{RenderLabel $.Context .}}</a>
|
2020-11-29 04:26:03 +01:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2020-11-25 12:20:40 +01:00
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="desc issue-item-bottom-row gt-df gt-ac gt-fw gt-my-1">
|
|
|
|
<a class="index gt-ml-0 gt-mr-2" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">
|
2020-12-21 09:31:20 +01:00
|
|
|
{{if eq $.listType "dashboard"}}
|
2021-04-11 05:46:37 +02:00
|
|
|
{{.Repo.FullName}}#{{.Index}}
|
|
|
|
{{else}}
|
2020-12-21 09:31:20 +01:00
|
|
|
#{{.Index}}
|
|
|
|
{{end}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</a>
|
2022-08-25 23:55:52 +02:00
|
|
|
{{$timeStr := TimeSinceUnix .GetLastEventTimestamp $.locale}}
|
|
|
|
{{if .OriginalAuthor}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr .GetLastEventLabelFake $timeStr (.OriginalAuthor|Escape) | Safe}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{else if gt .Poster.ID 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr .GetLastEventLabel $timeStr (.Poster.HomeLink|Escape) (.Poster.GetDisplayName | Escape) | Safe}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{else}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr .GetLastEventLabelFake $timeStr (.Poster.GetDisplayName | Escape) | Safe}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{end}}
|
2022-05-25 15:33:35 +02:00
|
|
|
{{if .IsPull}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="branches gt-df gt-ac">
|
2022-05-25 15:33:35 +02:00
|
|
|
<div class="branch">
|
2023-02-06 19:09:18 +01:00
|
|
|
<a href="{{.PullRequest.BaseRepo.Link}}/src/branch/{{PathEscapeSegments .PullRequest.BaseBranch}}">
|
2022-05-25 15:33:35 +02:00
|
|
|
{{/* inline to remove the spaces between spans */}}
|
|
|
|
{{if ne .RepoID .PullRequest.BaseRepoID}}<span class="truncated-name">{{.PullRequest.BaseRepo.OwnerName}}</span>:{{end}}<span class="truncated-name">{{.PullRequest.BaseBranch}}</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "gitea-double-chevron-left" 12 "gt-mx-1"}}
|
2022-05-25 15:33:35 +02:00
|
|
|
{{if .PullRequest.HeadRepo}}
|
|
|
|
<div class="branch">
|
2023-02-06 19:09:18 +01:00
|
|
|
<a href="{{.PullRequest.HeadRepo.Link}}/src/branch/{{PathEscapeSegments .PullRequest.HeadBranch}}">
|
2022-05-25 15:33:35 +02:00
|
|
|
{{/* inline to remove the spaces between spans */}}
|
|
|
|
{{if ne .RepoID .PullRequest.HeadRepoID}}<span class="truncated-name">{{.PullRequest.HeadRepo.OwnerName}}</span>:{{end}}<span class="truncated-name">{{.PullRequest.HeadBranch}}</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{if and .Milestone (ne $.listType "milestone")}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<a class="milestone" {{if $.RepoLink}}href="{{$.RepoLink}}/milestone/{{.Milestone.ID}}"{{else}}href="{{.Repo.Link}}/milestone/{{.Milestone.ID}}"{{end}}>
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-milestone" 14 "gt-mr-2"}}{{.Milestone.Name}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2022-07-26 15:42:23 +02:00
|
|
|
{{if .Project}}
|
2023-03-06 17:32:56 +01:00
|
|
|
<a class="project" href="{{.Project.Link}}">
|
2023-03-19 13:44:48 +01:00
|
|
|
{{svg .Project.IconName 14 "gt-mr-2"}}{{.Project.Title}}
|
2022-07-26 15:42:23 +02:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{if .Ref}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<a class="ref" {{if $.RepoLink}}href="{{index $.IssueRefURLs .ID}}"{{else}}href="{{.Repo.Link}}{{index $.IssueRefURLs .ID}}"{{end}}>
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-git-branch" 14 "gt-mr-2"}}{{index $.IssueRefEndNames .ID}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{$tasks := .GetTasks}}
|
|
|
|
{{if gt $tasks 0}}
|
|
|
|
{{$tasksDone := .GetTasksDone}}
|
|
|
|
<span class="checklist">
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-checklist" 14 "gt-mr-2"}}{{$tasksDone}} / {{$tasks}}
|
2022-05-20 05:04:45 +02:00
|
|
|
<progress value="{{$tasksDone}}" max="{{$tasks}}"></progress>
|
2020-11-25 12:20:40 +01:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{if ne .DeadlineUnix 0}}
|
2023-03-24 11:35:38 +01:00
|
|
|
<span class="due-date" data-tooltip-content="{{$.locale.Tr "repo.issues.due_date"}}">
|
2023-06-22 12:19:38 +02:00
|
|
|
<span{{if .IsOverdue}} class="text red"{{end}}>
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-calendar" 14 "gt-mr-2"}}
|
2023-04-25 21:48:30 +02:00
|
|
|
{{DateTime "short" .DeadlineUnix}}
|
2020-11-29 16:52:11 +01:00
|
|
|
</span>
|
2020-11-25 12:20:40 +01:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{if .IsPull}}
|
|
|
|
{{$approveOfficial := call $approvalCounts .ID "approve"}}
|
|
|
|
{{$rejectOfficial := call $approvalCounts .ID "reject"}}
|
|
|
|
{{$waitingOfficial := call $approvalCounts .ID "waiting"}}
|
|
|
|
{{if gt $approveOfficial 0}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<span class="approvals gt-df gt-ac green">
|
|
|
|
{{svg "octicon-check" 14 "gt-mr-1"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.TrN $approveOfficial "repo.pulls.approve_count_1" "repo.pulls.approve_count_n" $approveOfficial}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{if gt $rejectOfficial 0}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<span class="rejects gt-df gt-ac red">
|
|
|
|
{{svg "octicon-diff" 14 "gt-mr-2"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.TrN $rejectOfficial "repo.pulls.reject_count_1" "repo.pulls.reject_count_n" $rejectOfficial}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{if gt $waitingOfficial 0}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<span class="waiting gt-df gt-ac">
|
|
|
|
{{svg "octicon-eye" 14 "gt-mr-2"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.TrN $waitingOfficial "repo.pulls.waiting_count_1" "repo.pulls.waiting_count_n" $waitingOfficial}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{if and (not .PullRequest.HasMerged) (gt (len .PullRequest.ConflictedFiles) 0)}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<span class="conflicting gt-df gt-ac">
|
2020-11-25 12:20:40 +01:00
|
|
|
{{svg "octicon-x" 14}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.TrN (len .PullRequest.ConflictedFiles) "repo.pulls.num_conflicting_files_1" "repo.pulls.num_conflicting_files_n" (len .PullRequest.ConflictedFiles)}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-24 08:11:23 +01:00
|
|
|
{{if or .TotalTrackedTime .Assignees .NumComments}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="issue-item-icons-right gt-df gt-p-2">
|
2023-03-24 08:11:23 +01:00
|
|
|
{{if .TotalTrackedTime}}
|
2020-11-25 12:20:40 +01:00
|
|
|
<div class="issue-item-icon-right text grey">
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-clock" 16 "gt-mr-2"}}
|
2020-11-25 12:20:40 +01:00
|
|
|
{{.TotalTrackedTime | Sec2Time}}
|
|
|
|
</div>
|
2023-03-24 08:11:23 +01:00
|
|
|
{{end}}
|
|
|
|
{{if .Assignees}}
|
2020-11-25 12:20:40 +01:00
|
|
|
<div class="issue-item-icon-right text grey">
|
|
|
|
{{range .Assignees}}
|
2023-06-11 04:13:08 +02:00
|
|
|
<a class="ui assignee gt-no-underline" href="{{.HomeLink}}" data-tooltip-content="{{.GetDisplayName}}">
|
2023-05-14 16:15:59 +02:00
|
|
|
{{avatar $.Context . 20}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-03-24 08:11:23 +01:00
|
|
|
{{end}}
|
|
|
|
{{if .NumComments}}
|
2020-11-25 12:20:40 +01:00
|
|
|
<div class="issue-item-icon-right text grey">
|
2023-06-11 04:13:08 +02:00
|
|
|
<a class="gt-no-underline muted" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">
|
2023-03-24 08:11:23 +01:00
|
|
|
{{svg "octicon-comment" 16 "gt-mr-2"}}{{.NumComments}}
|
|
|
|
</a>
|
2020-11-25 12:20:40 +01:00
|
|
|
</div>
|
2023-03-24 08:11:23 +01:00
|
|
|
{{end}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</div>
|
2023-03-24 08:11:23 +01:00
|
|
|
{{end}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2022-01-27 09:30:51 +01:00
|
|
|
{{if .IssueIndexerUnavailable}}
|
|
|
|
<div class="ui error message">
|
2022-06-27 22:58:46 +02:00
|
|
|
<p>{{$.locale.Tr "repo.issues.keyword_search_unavailable"}}</p>
|
2022-01-27 09:30:51 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-11-25 12:20:40 +01:00
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|