forgejo/templates/repo/commit_status.tmpl

15 lines
636 B
Cheetah
Raw Normal View History

{{if eq .State "pending"}}
2017-11-21 05:43:00 +00:00
<a href="{{.TargetURL}}" target=_blank><i class="commit-status circle icon yellow"></i></a>
{{end}}
{{if eq .State "success"}}
2017-11-21 05:43:00 +00:00
<a href="{{.TargetURL}}" target=_blank><i class="commit-status check icon green"></i></a>
{{end}}
{{if eq .State "error"}}
2017-11-21 05:43:00 +00:00
<a href="{{.TargetURL}}" target=_blank><i class="commit-status warning icon red"></i></a>
{{end}}
{{if eq .State "failure"}}
2017-11-21 05:43:00 +00:00
<a href="{{.TargetURL}}" target=_blank><i class="commit-status remove icon red"></i></a>
{{end}}
{{if eq .State "warning"}}
2017-11-21 05:43:00 +00:00
<a href="{{.TargetURL}}" target=_blank><i class="commit-status warning sign icon yellow"></i></a>
{{end}}