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