Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516
  1. <!-- make sure this matches the color logic in web_src/js/components/DashboardRepoList.vue -->
  2. {{if eq .State "pending"}}
  3. {{svg "octicon-dot-fill" 18 "commit-status icon text yellow"}}
  4. {{end}}
  5. {{if eq .State "success"}}
  6. {{svg "octicon-check" 18 "commit-status icon text green"}}
  7. {{end}}
  8. {{if eq .State "error"}}
  9. {{svg "gitea-exclamation" 18 "commit-status icon text red"}}
  10. {{end}}
  11. {{if eq .State "failure"}}
  12. {{svg "octicon-x" 18 "commit-status icon text red"}}
  13. {{end}}
  14. {{if eq .State "warning"}}
  15. {{svg "gitea-exclamation" 18 "commit-status icon text yellow"}}
  16. {{end}}