diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-11-20 21:43:00 -0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-11-21 13:43:00 +0800 |
commit | ea78a6db5710c630fc3bd2d1d6c9551ea82b39f9 (patch) | |
tree | 3dfa65d7e9472c705d671ef4a2fee82bec7257cc /templates/repo/commit_status.tmpl | |
parent | 0f6dc411dfc2bf85511b533c4055aa0c95bf54b1 (diff) | |
download | gitea-ea78a6db5710c630fc3bd2d1d6c9551ea82b39f9.tar.gz gitea-ea78a6db5710c630fc3bd2d1d6c9551ea82b39f9.zip |
Spaces to tabs in templates (#2953)
Diffstat (limited to 'templates/repo/commit_status.tmpl')
-rw-r--r-- | templates/repo/commit_status.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/repo/commit_status.tmpl b/templates/repo/commit_status.tmpl index 752fd762e3..d5f75c132a 100644 --- a/templates/repo/commit_status.tmpl +++ b/templates/repo/commit_status.tmpl @@ -1,15 +1,15 @@ {{if eq .State "pending"}} - <a href="{{.TargetURL}}" target=_blank><i class="commit-status circle icon yellow"></i></a> + <a href="{{.TargetURL}}" target=_blank><i class="commit-status circle icon yellow"></i></a> {{end}} {{if eq .State "success"}} - <a href="{{.TargetURL}}" target=_blank><i class="commit-status check icon green"></i></a> + <a href="{{.TargetURL}}" target=_blank><i class="commit-status check icon green"></i></a> {{end}} {{if eq .State "error"}} - <a href="{{.TargetURL}}" target=_blank><i class="commit-status warning icon red"></i></a> + <a href="{{.TargetURL}}" target=_blank><i class="commit-status warning icon red"></i></a> {{end}} {{if eq .State "failure"}} - <a href="{{.TargetURL}}" target=_blank><i class="commit-status remove icon red"></i></a> + <a href="{{.TargetURL}}" target=_blank><i class="commit-status remove icon red"></i></a> {{end}} {{if eq .State "warning"}} - <a href="{{.TargetURL}}" target=_blank><i class="commit-status warning sign icon yellow"></i></a> + <a href="{{.TargetURL}}" target=_blank><i class="commit-status warning sign icon yellow"></i></a> {{end}}
\ No newline at end of file |