1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-11 03:58:20 +00:00

Add repo list data, need front-end fix

This commit is contained in:
Unknown
2014-03-15 12:13:45 -04:00
parent f047df6e2b
commit dfcae2a97a
6 changed files with 17 additions and 25 deletions

View File

@@ -44,7 +44,13 @@
</ul>
</div>
{{else}}
<div class="tab-pane active">repo</div>
{{$owner := .Owner}}
<div class="tab-pane active">
{{range .Repos}}
<h4><a href="/{{$owner.Name}}/{{.LowerName}}">{{.LowerName}}</a> <small>Star:{{.NumStars}} Fork:{{.NumForks}}</small></h4>
<p>{{.Description}}</p>
{{end}}
</div>
{{end}}
</div>
</div>