You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
964 B

10 years ago
10 years ago
  1. {{template "ng/base/head" .}}
  2. {{template "ng/base/header" .}}
  3. <div id="setting-wrapper" class="main-wrapper">
  4. <div id="org-setting" class="container clear">
  5. {{template "explore/nav" .}}
  6. <div class="grid-4-5 left">
  7. <div class="setting-content">
  8. <div id="org-repo-list">
  9. {{range .Repos}}
  10. <div class="org-repo-item">
  11. <ul class="org-repo-status right">
  12. <li><i class="octicon octicon-star"></i> {{.NumStars}}</li>
  13. <li><i class="octicon octicon-git-branch"></i> {{.NumForks}}</li>
  14. </ul>
  15. <h2><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></h2>
  16. <p class="org-repo-description">{{.Description}}</p>
  17. <p class="org-repo-updated">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p>
  18. </div>
  19. {{end}}
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. {{template "ng/base/footer" .}}