aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/commit_status.tmpl
blob: d5f75c132a9d87d50ed46be71c9db332f5afa6c3 (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}}