diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-06-22 22:20:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 16:20:51 -0400 |
commit | d9aa007a9e84bd255b16bd02b9ab18719cb650a2 (patch) | |
tree | 90422e439d82ed0686de95f7630ec8f37a3a3ff1 /templates/explore | |
parent | daf62841f645e77affa0a50701a79d942c612500 (diff) | |
download | gitea-d9aa007a9e84bd255b16bd02b9ab18719cb650a2.tar.gz gitea-d9aa007a9e84bd255b16bd02b9ab18719cb650a2.zip |
Use label to describe repository type (#11891)
* Use label instead of icon to describe repository type when repo avatar is set
* header_icon is not longer duplicated; move out of separate template
* handle archived case too
* use everywhere
* public template -> template
* bring back separate icon in better form
* definitely was overthinking this
* 32
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/explore')
-rw-r--r-- | templates/explore/repo_list.tmpl | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl index 61ef056afc..97495e16b7 100644 --- a/templates/explore/repo_list.tmpl +++ b/templates/explore/repo_list.tmpl @@ -7,13 +7,26 @@ {{end}} <a class="name" href="{{.Link}}"> {{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}} - {{if .IsArchived}}<i class="archive icon archived-icon"></i>{{end}} </a> - {{if .IsPrivate}} - <span class="middle text gold">{{svg "octicon-lock" 16}}</span> - {{else if and (not .IsMirror) (not .IsFork) (.Owner.Visibility.IsPrivate) }} - <span class="text gold">{{svg "octicon-internal-repo" 16}}</span> - {{else if .IsFork}} + {{if .IsArchived}}<span class="ui compact label">{{$.i18n.Tr "repo.desc.archived"}}</span>{{end}} + {{if .IsTemplate}} + {{if .IsPrivate}} + <span class="ui basic label">{{$.i18n.Tr "repo.desc.private_template"}}</span> + {{else}} + {{if .Owner.Visibility.IsPrivate}} + <span class="ui basic label">{{$.i18n.Tr "repo.desc.internal_template"}}</span> + {{end}} + {{end}} + {{else}} + {{if .IsPrivate}} + <span class="ui basic label">{{$.i18n.Tr "repo.desc.private"}}</span> + {{else}} + {{if .Owner.Visibility.IsPrivate}} + <span class="ui basic label">{{$.i18n.Tr "repo.desc.internal"}}</span> + {{end}} + {{end}} + {{end}} + {{if .IsFork}} <span class="middle">{{svg "octicon-repo-forked" 16}}</span> {{else if .IsMirror}} <span class="middle">{{svg "octicon-repo-clone" 16}}</span> |