2015-11-17 04:28:46 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository forks">
|
2015-12-07 22:30:52 +00: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">
|
2020-12-03 18:46:11 +00:00
|
|
|
{{avatar .Owner}}
|
2015-12-07 22:30:52 +00: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 13:17:27 +00:00
|
|
|
</div>
|
2015-11-17 04:28:46 +00:00
|
|
|
{{template "base/footer" .}}
|