Files
Atay-Makhzan/templates/repo/commit_status.tmpl
T

16 lines
478 B
Handlebars
Raw Normal View History

{{if eq .State "pending"}}
2022-08-09 23:55:29 +02:00
{{svg "octicon-dot-fill" 18 "commit-status icon text yellow"}}
{{end}}
{{if eq .State "success"}}
2022-08-09 23:55:29 +02:00
{{svg "octicon-check" 18 "commit-status icon text green"}}
{{end}}
{{if eq .State "error"}}
2022-08-09 23:55:29 +02:00
{{svg "gitea-exclamation" 18 "commit-status icon text red"}}
{{end}}
{{if eq .State "failure"}}
2022-08-09 23:55:29 +02:00
{{svg "octicon-x" 18 "commit-status icon text red"}}
{{end}}
{{if eq .State "warning"}}
2022-08-09 23:55:29 +02:00
{{svg "gitea-exclamation" 18 "commit-status icon text yellow"}}
{{end}}