1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-04 14:23:17 +00:00
forgejo/templates/repo/commit_status.tmpl

16 lines
422 B
Handlebars
Raw Normal View History

{{if eq .State "pending"}}
<i class="commit-status circle icon yellow"></i>
{{end}}
{{if eq .State "success"}}
<i class="commit-status check icon green"></i>
{{end}}
{{if eq .State "error"}}
<i class="commit-status warning icon red"></i>
{{end}}
{{if eq .State "failure"}}
<i class="commit-status remove icon red"></i>
{{end}}
{{if eq .State "warning"}}
<i class="commit-status warning sign icon yellow"></i>
{{end}}