mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 09:09:02 +00:00
Use icon repo-forked instead of repo-lock for private, forked repos
This commit is contained in:
parent
8436d69eaf
commit
532f9fdd99
|
@ -3,10 +3,10 @@
|
|||
<div class="item">
|
||||
<div class="ui header">
|
||||
<a class="name" href="{{AppSubUrl}}/{{if .Owner}}{{.Owner.Name}}{{else if $.Org}}{{$.Org.Name}}{{else}}{{$.Owner.Name}}{{end}}/{{.Name}}">{{if $.PageIsExplore}}{{.Owner.Name}} / {{end}}{{.Name}}</a>
|
||||
{{if .IsPrivate}}
|
||||
<span class="text gold"><i class="icon octicon octicon-lock"></i></span>
|
||||
{{else if .IsFork}}
|
||||
{{if .IsFork}}
|
||||
<span><i class="icon octicon octicon-repo-forked"></i></span>
|
||||
{{else if .IsPrivate}}
|
||||
<span class="text gold"><i class="icon octicon octicon-lock"></i></span>
|
||||
{{else if .IsMirror}}
|
||||
<span><i class="icon octicon octicon-repo-clone"></i></span>
|
||||
{{end}}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
{{range .Repos}}
|
||||
<li {{if .IsPrivate}}class="private"{{end}}>
|
||||
<a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}">
|
||||
<i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i>
|
||||
<i class="icon octicon octicon-{{if .IsFork}}repo-forked{{else if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i>
|
||||
<strong class="text truncate item-name">{{.Name}}</strong>
|
||||
<span class="ui right text light grey">
|
||||
<i class="octicon octicon-star"></i>{{.NumStars}}
|
||||
|
|
Loading…
Reference in a new issue