2015-11-22 12:02:09 +05:30
|
|
|
<div class="ui repository list">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{range .Repos}}
|
|
|
|
<div class="item">
|
|
|
|
<div class="ui header">
|
2017-08-17 17:50:21 +05:30
|
|
|
<a class="name" href="{{AppSubUrl}}/{{if .Owner}}{{.Owner.Name}}{{else if $.Org}}{{$.Org.Name}}{{else}}{{$.Owner.Name}}{{end}}/{{.Name}}">{{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}</a>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{if .IsPrivate}}
|
2016-07-16 10:15:13 +05:30
|
|
|
<span class="text gold"><i class="octicon octicon-lock"></i></span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if .IsFork}}
|
2016-07-16 10:15:13 +05:30
|
|
|
<span><i class="octicon octicon-repo-forked"></i></span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if .IsMirror}}
|
2016-07-16 10:15:13 +05:30
|
|
|
<span><i class="octicon octicon-repo-clone"></i></span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
2015-11-22 12:02:09 +05:30
|
|
|
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui right metas">
|
|
|
|
<span class="text grey"><i class="octicon octicon-star"></i> {{.NumStars}}</span>
|
|
|
|
<span class="text grey"><i class="octicon octicon-git-branch"></i> {{.NumForks}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-29 12:27:36 +05:30
|
|
|
{{if .DescriptionHTML}}<p class="has-emoji">{{.DescriptionHTML}}</p>{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p>
|
|
|
|
</div>
|
2016-12-01 16:22:57 +05:30
|
|
|
{{else}}
|
|
|
|
<div>
|
|
|
|
{{$.i18n.Tr "explore.repo_no_results"}}
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|