aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/pulls/status.tmpl
blob: e1401aa8bb83ac1c9c0e72e144ab1b7d3cb9627e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{if $.LatestCommitStatus}}
    <div class="ui top attached header">
         {{if eq .LatestCommitStatus.State "pending"}}
            {{$.i18n.Tr "repo.pulls.status_checking"}}
        {{else if eq .LatestCommitStatus.State "success"}}
            {{$.i18n.Tr "repo.pulls.status_checks_success"}}
        {{else if eq .LatestCommitStatus.State "error"}}
            {{$.i18n.Tr "repo.pulls.status_checks_error"}}
        {{else}}
            {{$.i18n.Tr "repo.pulls.status_checking"}}
        {{end}}
    </div>

    {{range $.LatestCommitStatuses}}
        <div class="ui attached segment">
            <span>{{template "repo/commit_status" .}}</span>
            <span class="ui">{{.Context}} <span class="text grey">{{.Description}}</span></span>
            <div class="ui right">{{if .TargetURL}}<a href="{{.TargetURL}}">Details</a>{{end}}</div>
        </div>
    {{end}}
{{end}}