|
|
@ -1,8 +1,8 @@ |
|
|
|
<div class="issue list"> |
|
|
|
<div class="issue list"> |
|
|
|
{{$approvalCounts := .ApprovalCounts}} |
|
|
|
{{$approvalCounts := .ApprovalCounts}} |
|
|
|
{{range .Issues}} |
|
|
|
{{range .Issues}} |
|
|
|
<li class="item gt-df gt-py-3"> |
|
|
|
<li class="item"> |
|
|
|
<div class="issue-item-left gt-df gt-items-start"> |
|
|
|
<div class="issue-item-left"> |
|
|
|
{{if $.CanWriteIssuesOrPulls}} |
|
|
|
{{if $.CanWriteIssuesOrPulls}} |
|
|
|
<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}}""> |
|
|
|
<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}}""> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
@ -11,21 +11,49 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="issue-item-main"> |
|
|
|
<div class="issue-item-main"> |
|
|
|
<div class="issue-item-top-row"> |
|
|
|
<div class="issue-item-header"> |
|
|
|
<a class="title gt-no-underline issue-title" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">{{RenderEmoji $.Context .Title | RenderCodeBlock}}</a> |
|
|
|
<div class="issue-item-title"> |
|
|
|
{{if .IsPull}} |
|
|
|
<a class="title gt-no-underline issue-title" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">{{RenderEmoji $.Context .Title | RenderCodeBlock}}</a> |
|
|
|
{{if (index $.CommitStatuses .PullRequest.ID)}} |
|
|
|
{{if .IsPull}} |
|
|
|
{{template "repo/commit_statuses" dict "Status" (index $.CommitLastStatus .PullRequest.ID) "Statuses" (index $.CommitStatuses .PullRequest.ID) "root" $}} |
|
|
|
{{if (index $.CommitStatuses .PullRequest.ID)}} |
|
|
|
|
|
|
|
{{template "repo/commit_statuses" dict "Status" (index $.CommitLastStatus .PullRequest.ID) "Statuses" (index $.CommitStatuses .PullRequest.ID) "root" $}} |
|
|
|
|
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
<span class="labels-list gt-ml-2"> |
|
|
|
<span class="labels-list gt-ml-2"> |
|
|
|
{{range .Labels}} |
|
|
|
{{range .Labels}} |
|
|
|
<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> |
|
|
|
<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> |
|
|
|
{{end}} |
|
|
|
|
|
|
|
</span> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{if or .TotalTrackedTime .Assignees .NumComments}} |
|
|
|
|
|
|
|
<div class="issue-item-right"> |
|
|
|
|
|
|
|
{{if .TotalTrackedTime}} |
|
|
|
|
|
|
|
<div class="text grey flex-text-block"> |
|
|
|
|
|
|
|
{{svg "octicon-clock" 16}} |
|
|
|
|
|
|
|
{{.TotalTrackedTime | Sec2Time}} |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{if .Assignees}} |
|
|
|
|
|
|
|
<div class="text grey"> |
|
|
|
|
|
|
|
{{range .Assignees}} |
|
|
|
|
|
|
|
<a class="ui assignee gt-no-underline" href="{{.HomeLink}}" data-tooltip-content="{{.GetDisplayName}}"> |
|
|
|
|
|
|
|
{{avatar $.Context . 20}} |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{if .NumComments}} |
|
|
|
|
|
|
|
<div class="text grey"> |
|
|
|
|
|
|
|
<a class="gt-no-underline muted flex-text-inline" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}"> |
|
|
|
|
|
|
|
{{svg "octicon-comment" 16}}{{.NumComments}} |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
</div> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="desc issue-item-bottom-row"> |
|
|
|
<div class="issue-item-body"> |
|
|
|
<a class="index gt-ml-0 gt-mr-2" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}"> |
|
|
|
<a class="index" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}"> |
|
|
|
{{if eq $.listType "dashboard"}} |
|
|
|
{{if eq $.listType "dashboard"}} |
|
|
|
{{.Repo.FullName}}#{{.Index}} |
|
|
|
{{.Repo.FullName}}#{{.Index}} |
|
|
|
{{else}} |
|
|
|
{{else}} |
|
|
@ -41,14 +69,14 @@ |
|
|
|
{{$.locale.Tr .GetLastEventLabelFake $timeStr (.Poster.GetDisplayName | Escape) | Safe}} |
|
|
|
{{$.locale.Tr .GetLastEventLabelFake $timeStr (.Poster.GetDisplayName | Escape) | Safe}} |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if .IsPull}} |
|
|
|
{{if .IsPull}} |
|
|
|
<div class="branches gt-df gt-ac"> |
|
|
|
<div class="branches flex-text-inline"> |
|
|
|
<div class="branch"> |
|
|
|
<div class="branch"> |
|
|
|
<a href="{{.PullRequest.BaseRepo.Link}}/src/branch/{{PathEscapeSegments .PullRequest.BaseBranch}}"> |
|
|
|
<a href="{{.PullRequest.BaseRepo.Link}}/src/branch/{{PathEscapeSegments .PullRequest.BaseBranch}}"> |
|
|
|
{{/* inline to remove the spaces between spans */}} |
|
|
|
{{/* 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> |
|
|
|
{{if ne .RepoID .PullRequest.BaseRepoID}}<span class="truncated-name">{{.PullRequest.BaseRepo.OwnerName}}</span>:{{end}}<span class="truncated-name">{{.PullRequest.BaseBranch}}</span> |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
{{svg "gitea-double-chevron-left" 12 "gt-mx-1"}} |
|
|
|
{{svg "gitea-double-chevron-left" 12}} |
|
|
|
{{if .PullRequest.HeadRepo}} |
|
|
|
{{if .PullRequest.HeadRepo}} |
|
|
|
<div class="branch"> |
|
|
|
<div class="branch"> |
|
|
|
<a href="{{.PullRequest.HeadRepo.Link}}/src/branch/{{PathEscapeSegments .PullRequest.HeadBranch}}"> |
|
|
|
<a href="{{.PullRequest.HeadRepo.Link}}/src/branch/{{PathEscapeSegments .PullRequest.HeadBranch}}"> |
|
|
@ -60,32 +88,32 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if and .Milestone (ne $.listType "milestone")}} |
|
|
|
{{if and .Milestone (ne $.listType "milestone")}} |
|
|
|
<a class="milestone" {{if $.RepoLink}}href="{{$.RepoLink}}/milestone/{{.Milestone.ID}}"{{else}}href="{{.Repo.Link}}/milestone/{{.Milestone.ID}}"{{end}}> |
|
|
|
<a class="milestone flex-text-inline" {{if $.RepoLink}}href="{{$.RepoLink}}/milestone/{{.Milestone.ID}}"{{else}}href="{{.Repo.Link}}/milestone/{{.Milestone.ID}}"{{end}}> |
|
|
|
{{svg "octicon-milestone" 14 "gt-mr-2"}}{{.Milestone.Name}} |
|
|
|
{{svg "octicon-milestone" 14}}{{.Milestone.Name}} |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if .Project}} |
|
|
|
{{if .Project}} |
|
|
|
<a class="project" href="{{.Project.Link}}"> |
|
|
|
<a class="project flex-text-inline" href="{{.Project.Link}}"> |
|
|
|
{{svg .Project.IconName 14 "gt-mr-2"}}{{.Project.Title}} |
|
|
|
{{svg .Project.IconName 14}}{{.Project.Title}} |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if .Ref}} |
|
|
|
{{if .Ref}} |
|
|
|
<a class="ref" {{if $.RepoLink}}href="{{index $.IssueRefURLs .ID}}"{{else}}href="{{.Repo.Link}}{{index $.IssueRefURLs .ID}}"{{end}}> |
|
|
|
<a class="ref flex-text-inline" {{if $.RepoLink}}href="{{index $.IssueRefURLs .ID}}"{{else}}href="{{.Repo.Link}}{{index $.IssueRefURLs .ID}}"{{end}}> |
|
|
|
{{svg "octicon-git-branch" 14 "gt-mr-2"}}{{index $.IssueRefEndNames .ID}} |
|
|
|
{{svg "octicon-git-branch" 14}}{{index $.IssueRefEndNames .ID}} |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{$tasks := .GetTasks}} |
|
|
|
{{$tasks := .GetTasks}} |
|
|
|
{{if gt $tasks 0}} |
|
|
|
{{if gt $tasks 0}} |
|
|
|
{{$tasksDone := .GetTasksDone}} |
|
|
|
{{$tasksDone := .GetTasksDone}} |
|
|
|
<span class="checklist"> |
|
|
|
<span class="checklist flex-text-inline"> |
|
|
|
{{svg "octicon-checklist" 14 "gt-mr-2"}}{{$tasksDone}} / {{$tasks}} |
|
|
|
{{svg "octicon-checklist" 14}}{{$tasksDone}} / {{$tasks}} |
|
|
|
<progress value="{{$tasksDone}}" max="{{$tasks}}"></progress> |
|
|
|
<progress value="{{$tasksDone}}" max="{{$tasks}}"></progress> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if ne .DeadlineUnix 0}} |
|
|
|
{{if ne .DeadlineUnix 0}} |
|
|
|
<span class="due-date" data-tooltip-content="{{$.locale.Tr "repo.issues.due_date"}}"> |
|
|
|
<span class="due-date flex-text-inline" data-tooltip-content="{{$.locale.Tr "repo.issues.due_date"}}"> |
|
|
|
<span{{if .IsOverdue}} class="text red"{{end}}> |
|
|
|
<span{{if .IsOverdue}} class="text red"{{end}}> |
|
|
|
{{svg "octicon-calendar" 14 "gt-mr-2"}} |
|
|
|
{{svg "octicon-calendar" 14}} |
|
|
|
{{DateTime "short" .DeadlineUnix}} |
|
|
|
{{DateTime "short" .DeadlineUnix}} |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</span> |
|
|
@ -95,25 +123,25 @@ |
|
|
|
{{$rejectOfficial := call $approvalCounts .ID "reject"}} |
|
|
|
{{$rejectOfficial := call $approvalCounts .ID "reject"}} |
|
|
|
{{$waitingOfficial := call $approvalCounts .ID "waiting"}} |
|
|
|
{{$waitingOfficial := call $approvalCounts .ID "waiting"}} |
|
|
|
{{if gt $approveOfficial 0}} |
|
|
|
{{if gt $approveOfficial 0}} |
|
|
|
<span class="approvals gt-df gt-ac green"> |
|
|
|
<span class="approvals green flex-text-inline"> |
|
|
|
{{svg "octicon-check" 14 "gt-mr-1"}} |
|
|
|
{{svg "octicon-check" 14}} |
|
|
|
{{$.locale.TrN $approveOfficial "repo.pulls.approve_count_1" "repo.pulls.approve_count_n" $approveOfficial}} |
|
|
|
{{$.locale.TrN $approveOfficial "repo.pulls.approve_count_1" "repo.pulls.approve_count_n" $approveOfficial}} |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if gt $rejectOfficial 0}} |
|
|
|
{{if gt $rejectOfficial 0}} |
|
|
|
<span class="rejects gt-df gt-ac red"> |
|
|
|
<span class="rejects red flex-text-inline"> |
|
|
|
{{svg "octicon-diff" 14 "gt-mr-2"}} |
|
|
|
{{svg "octicon-diff" 14}} |
|
|
|
{{$.locale.TrN $rejectOfficial "repo.pulls.reject_count_1" "repo.pulls.reject_count_n" $rejectOfficial}} |
|
|
|
{{$.locale.TrN $rejectOfficial "repo.pulls.reject_count_1" "repo.pulls.reject_count_n" $rejectOfficial}} |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if gt $waitingOfficial 0}} |
|
|
|
{{if gt $waitingOfficial 0}} |
|
|
|
<span class="waiting gt-df gt-ac"> |
|
|
|
<span class="waiting flex-text-inline"> |
|
|
|
{{svg "octicon-eye" 14 "gt-mr-2"}} |
|
|
|
{{svg "octicon-eye" 14}} |
|
|
|
{{$.locale.TrN $waitingOfficial "repo.pulls.waiting_count_1" "repo.pulls.waiting_count_n" $waitingOfficial}} |
|
|
|
{{$.locale.TrN $waitingOfficial "repo.pulls.waiting_count_1" "repo.pulls.waiting_count_n" $waitingOfficial}} |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if and (not .PullRequest.HasMerged) (gt (len .PullRequest.ConflictedFiles) 0)}} |
|
|
|
{{if and (not .PullRequest.HasMerged) (gt (len .PullRequest.ConflictedFiles) 0)}} |
|
|
|
<span class="conflicting gt-df gt-ac"> |
|
|
|
<span class="conflicting flex-text-inline"> |
|
|
|
{{svg "octicon-x" 14}} |
|
|
|
{{svg "octicon-x" 14}} |
|
|
|
{{$.locale.TrN (len .PullRequest.ConflictedFiles) "repo.pulls.num_conflicting_files_1" "repo.pulls.num_conflicting_files_n" (len .PullRequest.ConflictedFiles)}} |
|
|
|
{{$.locale.TrN (len .PullRequest.ConflictedFiles) "repo.pulls.num_conflicting_files_1" "repo.pulls.num_conflicting_files_n" (len .PullRequest.ConflictedFiles)}} |
|
|
|
</span> |
|
|
|
</span> |
|
|
@ -121,32 +149,6 @@ |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
{{if or .TotalTrackedTime .Assignees .NumComments}} |
|
|
|
|
|
|
|
<div class="issue-item-icons-right gt-df gt-p-2"> |
|
|
|
|
|
|
|
{{if .TotalTrackedTime}} |
|
|
|
|
|
|
|
<div class="issue-item-icon-right text grey"> |
|
|
|
|
|
|
|
{{svg "octicon-clock" 16 "gt-mr-2"}} |
|
|
|
|
|
|
|
{{.TotalTrackedTime | Sec2Time}} |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{if .Assignees}} |
|
|
|
|
|
|
|
<div class="issue-item-icon-right text grey"> |
|
|
|
|
|
|
|
{{range .Assignees}} |
|
|
|
|
|
|
|
<a class="ui assignee gt-no-underline" href="{{.HomeLink}}" data-tooltip-content="{{.GetDisplayName}}"> |
|
|
|
|
|
|
|
{{avatar $.Context . 20}} |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
{{if .NumComments}} |
|
|
|
|
|
|
|
<div class="issue-item-icon-right text grey"> |
|
|
|
|
|
|
|
<a class="gt-no-underline muted" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}"> |
|
|
|
|
|
|
|
{{svg "octicon-comment" 16 "gt-mr-2"}}{{.NumComments}} |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
</li> |
|
|
|
</li> |
|
|
|
{{end}} |
|
|
|
{{end}} |
|
|
|
{{if .IssueIndexerUnavailable}} |
|
|
|
{{if .IssueIndexerUnavailable}} |
|
|
|