mirror of https://github.com/go-gitea/gitea
Fix repo internal icon when avatar is present (#11873)
* Fix repo internal icon when avatar is present * fix tabs * move repo icons in header to separate templatepull/11871/head^2
parent
83e9ac57a1
commit
b6adf80a80
@ -0,0 +1,23 @@ |
||||
{{if $.IsTemplate}} |
||||
{{if $.IsPrivate}} |
||||
{{svg "octicon-repo-template-private" 32}} |
||||
{{else}} |
||||
{{svg "octicon-repo-template" 32}} |
||||
{{end}} |
||||
{{else}} |
||||
{{if $.IsPrivate}} |
||||
{{svg "octicon-lock" 32}} |
||||
{{else if and (not $.IsMirror) (not $.IsFork) ($.Owner)}} |
||||
{{if $.Owner.Visibility.IsPrivate}} |
||||
{{svg "octicon-internal-repo" 32}} |
||||
{{else}} |
||||
{{svg "octicon-repo" 32}} |
||||
{{end}} |
||||
{{else if $.IsMirror}} |
||||
{{svg "octicon-repo-clone" 32}} |
||||
{{else if $.IsFork}} |
||||
{{svg "octicon-repo-forked" 32}} |
||||
{{else}} |
||||
{{svg "octicon-repo" 32}} |
||||
{{end}} |
||||
{{end}} |
Loading…
Reference in new issue