aboutsummaryrefslogtreecommitdiffstats
path: root/templates/explore
diff options
context:
space:
mode:
Diffstat (limited to 'templates/explore')
-rw-r--r--templates/explore/repo_list.tmpl25
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>