summaryrefslogtreecommitdiffstats
path: root/templates/repo/projects/list.tmpl
diff options
context:
space:
mode:
authorMohammad Hadi Hosseinpour <wp.parsi@gmail.com>2020-11-10 07:16:19 +0330
committerGitHub <noreply@github.com>2020-11-09 22:46:19 -0500
commitbeab1dd337250cdef4e4a7588a19e7d711eb870e (patch)
tree54c71b92a9bb2c3dfc8928fbed624d2eeab3888a /templates/repo/projects/list.tmpl
parent182b5a08ed211331d86b74ff78a7ab2962b9655b (diff)
downloadgitea-beab1dd337250cdef4e4a7588a19e7d711eb870e.tar.gz
gitea-beab1dd337250cdef4e4a7588a19e7d711eb870e.zip
Added title and action buttons to Project view page (#13437)
* Added title and action buttons to Project view page * Changed octicon for project close action * Fix indentation in templates/repo/projects/view.tmpl Co-authored-by: zeripath <art27@cantab.net> * Fix indentation templates/repo/projects/view.tmpl (2nd) Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'templates/repo/projects/list.tmpl')
-rw-r--r--templates/repo/projects/list.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/projects/list.tmpl b/templates/repo/projects/list.tmpl
index 35c3c00f44..c7ee628316 100644
--- a/templates/repo/projects/list.tmpl
+++ b/templates/repo/projects/list.tmpl
@@ -57,7 +57,7 @@
{{if .IsClosed}}
<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/open">{{svg "octicon-check"}} {{$.i18n.Tr "repo.projects.open"}}</a>
{{else}}
- <a class="link-action" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-x"}} {{$.i18n.Tr "repo.projects.close"}}</a>
+ <a class="link-action" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-skip"}} {{$.i18n.Tr "repo.projects.close"}}</a>
{{end}}
<a class="delete-button" href="#" data-url="{{$.RepoLink}}/projects/{{.ID}}/delete" data-id="{{.ID}}">{{svg "octicon-trashcan"}} {{$.i18n.Tr "repo.issues.label_delete"}}</a>
</div>