githubTopContributions.partial.html 816 B

123456789101112131415161718192021222324
  1. <div class="row text-center">
  2. <h1> Github Top Contributed Repositories</h1>
  3. </div>
  4. <div class="col-lg-12">
  5. <div class="table-responsive">
  6. <table class="table table-bordered table-hover table-striped tablesorter">
  7. <thead>
  8. <tr>
  9. <th class="header">Repository Name</th>
  10. <th class="header">Total Commits</th>
  11. <th class="header">Author</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr data-ng-repeat="data in githubTopContributions.data.committed">
  16. <td>{{ data.repo_name }}</td>
  17. <td>{{ data.total }}</td>
  18. <td>{{ data.author }}</td>
  19. </tr>
  20. </tbody>
  21. </table>
  22. </div>
  23. </div>