Show last commit status in pull request lists (#6465)
This commit is contained in:
parent
09fb036ad6
commit
bf5af87eef
6 changed files with 144 additions and 0 deletions
|
@ -203,6 +203,12 @@
|
|||
<div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div>
|
||||
<a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Title}}</a>
|
||||
|
||||
{{if .IsPull }}
|
||||
{{if (index $.CommitStatus .ID)}}
|
||||
{{template "repo/commit_status" (index $.CommitStatus .ID)}}
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
||||
{{if .Ref}}
|
||||
<a class="ui label" href="{{$.RepoLink}}/src/branch/{{.Ref}}">{{.Ref}}</a>
|
||||
{{end}}
|
||||
|
|
|
@ -66,6 +66,12 @@
|
|||
<div class="ui label">{{if not $.RepoID}}{{.Repo.FullName}}{{end}}#{{.Index}}</div>
|
||||
<a class="title has-emoji" href="{{AppSubUrl}}/{{.Repo.Owner.Name}}/{{.Repo.Name}}/issues/{{.Index}}">{{.Title}}</a>
|
||||
|
||||
{{if .IsPull }}
|
||||
{{if (index $.CommitStatus .ID)}}
|
||||
{{template "repo/commit_status" (index $.CommitStatus .ID)}}
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
||||
{{with .Labels}}
|
||||
{{/* If we have any labels, we should show them
|
||||
with a 2.5 line height, this way they don't look
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue