2015-11-16 23:28:46 -05:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository forks">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<h2 class="ui dividing header">
|
|
|
|
{{.i18n.Tr "repo.forks"}}
|
|
|
|
</h2>
|
|
|
|
<div class="ui list">
|
|
|
|
{{range .Forks}}
|
|
|
|
<div class="item">
|
2016-08-05 15:12:54 -04:00
|
|
|
<img class="ui avatar image" src="{{.Owner.RelAvatarLink}}">
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="link">
|
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
|
|
|
|
/
|
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-01 09:17:27 -04:00
|
|
|
</div>
|
2015-11-16 23:28:46 -05:00
|
|
|
{{template "base/footer" .}}
|