2015-11-17 05:28:46 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository forks">
|
2015-12-07 23:30:52 +01: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 21:12:54 +02:00
|
|
|
<img class="ui avatar image" src="{{.Owner.RelAvatarLink}}">
|
2015-12-07 23:30:52 +01: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 15:17:27 +02:00
|
|
|
</div>
|
2015-11-17 05:28:46 +01:00
|
|
|
{{template "base/footer" .}}
|