summaryrefslogtreecommitdiffstats
path: root/templates/repo/commit_status.tmpl
blob: 752fd762e3d609aac8ca684229ae19e5f9d7e69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{if eq .State "pending"}}
    <a href="{{.TargetURL}}" target=_blank><i class="commit-status circle icon yellow"></i></a>
{{end}}
{{if eq .State "success"}}
    <a href="{{.TargetURL}}" target=_blank><i class="commit-status check icon green"></i></a>
{{end}}
{{if eq .State "error"}}
    <a href="{{.TargetURL}}" target=_blank><i class="commit-status warning icon red"></i></a>
{{end}}
{{if eq .State "failure"}}
    <a href="{{.TargetURL}}" target=_blank><i class="commit-status remove icon red"></i></a>
{{end}}
{{if eq .State "warning"}}
    <a href="{{.TargetURL}}" target=_blank><i class="commit-status warning sign icon yellow"></i></a>
{{end}}