mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
Enhance closed PR and Issue status in the list (#6000)
* working version * Update options/locale/locale_en-US.ini Co-Authored-By: adelowo <adelowomailbox@gmail.com> * update templates
This commit is contained in:
@@ -205,7 +205,23 @@
|
||||
{{end}}
|
||||
|
||||
<p class="desc">
|
||||
{{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}}
|
||||
{{ $textToTranslate := "repo.issues.opened_by" }}
|
||||
{{ if not .IsClosed }}
|
||||
{{ $timeStr = TimeSinceUnix .CreatedUnix $.Lang }}
|
||||
{{ else if and .IsClosed .IsPull }}
|
||||
{{ $timeStr = TimeSinceUnix .ClosedUnix $.Lang }}
|
||||
{{ if .PullRequest.HasMerged }}
|
||||
{{ $textToTranslate = "repo.pulls.merged_by"}}
|
||||
{{ else }}
|
||||
{{ $textToTranslate = "repo.issues.closed_by"}}
|
||||
{{ end }}
|
||||
{{ else }}
|
||||
{{ $timeStr = TimeSinceUnix .ClosedUnix $.Lang }}
|
||||
{{ $textToTranslate = "repo.issues.closed_by"}}
|
||||
{{ end }}
|
||||
|
||||
{{$.i18n.Tr $textToTranslate $timeStr .Poster.HomeLink .Poster.Name | Safe}}
|
||||
|
||||
{{$tasks := .GetTasks}}
|
||||
{{if gt $tasks 0}}
|
||||
{{$tasksDone := .GetTasksDone}}
|
||||
|
Reference in New Issue
Block a user