Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions templates/user/settings/repos.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@
<div class="item">
<div class="content">
{{if .IsPrivate}}
<span class="text gold iconFloat">{{svg "octicon-lock"}}</span>
{{svg "octicon-lock" 16 "mr-2 iconFloat"}}
{{else if .IsFork}}
<span class="iconFloat">{{svg "octicon-repo-forked"}}</span>
{{svg "octicon-repo-forked" 16 "mr-2 iconFloat"}}
{{else if .IsMirror}}
<span class="iconFloat">{{svg "octicon-mirror"}}</span>
{{svg "octicon-mirror" 16 "mr-2 iconFloat"}}
{{else if .IsTemplate}}
<span class="iconFloat">{{svg "octicon-repo-template"}}</span>
{{svg "octicon-repo-template" 16 "mr-2 iconFloat"}}
{{else}}
<span class="iconFloat">{{svg "octicon-repo"}}</span>
{{svg "octicon-repo" 16 "mr-2 iconFloat"}}
{{end}}
<a class="name" href="{{.Link}}">{{.OwnerName}}/{{.Name}}</a>
<span>{{FileSize .Size}}</span>
Expand Down