Browse Source

Use icon repo-forked instead of repo-lock for private, forked repos

tags/v0.9.99
Florian Kaiser 8 years ago
parent
commit
532f9fdd99
2 changed files with 4 additions and 4 deletions
  1. 3
    3
      templates/explore/repo_list.tmpl
  2. 1
    1
      templates/user/dashboard/dashboard.tmpl

+ 3
- 3
templates/explore/repo_list.tmpl View File

@@ -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}}

+ 1
- 1
templates/user/dashboard/dashboard.tmpl View File

@@ -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…
Cancel
Save