2023-07-21 04:32:25 -06:00
|
|
|
<!-- make sure this matches the color logic in web_src/js/components/DashboardRepoList.vue -->
|
2023-07-21 02:24:36 -06:00
|
|
|
{{if eq .State "pending"}}
|
2023-03-13 15:05:19 -06:00
|
|
|
{{svg "octicon-dot-fill" 18 "commit-status icon text yellow"}}
|
|
|
|
{{end}}
|
2017-09-14 00:51:32 -06:00
|
|
|
{{if eq .State "success"}}
|
2022-08-09 15:55:29 -06:00
|
|
|
{{svg "octicon-check" 18 "commit-status icon text green"}}
|
2017-09-14 00:51:32 -06:00
|
|
|
{{end}}
|
|
|
|
{{if eq .State "error"}}
|
2022-08-09 15:55:29 -06:00
|
|
|
{{svg "gitea-exclamation" 18 "commit-status icon text red"}}
|
2017-09-14 00:51:32 -06:00
|
|
|
{{end}}
|
|
|
|
{{if eq .State "failure"}}
|
2022-08-09 15:55:29 -06:00
|
|
|
{{svg "octicon-x" 18 "commit-status icon text red"}}
|
2017-09-14 00:51:32 -06:00
|
|
|
{{end}}
|
2023-10-08 16:16:06 -06:00
|
|
|
{{if eq .State "warning"}}
|
|
|
|
{{svg "gitea-exclamation" 18 "commit-status icon text yellow"}}
|
|
|
|
{{end}}
|