github.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. {% include 'hackathon/base.html' %}
  5. <div class="col-lg-12">
  6. <div class="table-responsive">
  7. <table class="table table-bordered table-hover table-striped tablesorter">
  8. <thead>
  9. <tr>
  10. <th class="header"> Username <i class="icon-sort"></i></th>
  11. <th class="header"> Blog <i class="icon-sort"></i></th>
  12. <th class="header"> Public Repos <i class="icon-sort"></i></th>
  13. <th class="header"> Public Gists <i class="icon-sort"></i></th>
  14. <th class="header"> Email <i class="icon-sort"></i></th>
  15. <th class="header"> Followers <i class="icon-sort"></i></th>
  16. <th class="header"> Following <i class="icon-sort"></i></th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for key in data %}
  21. <tr>
  22. <td>{{ key.name }}</td>
  23. <td>{{ key.blog }}</td>
  24. <td>{{ key.public_repos }}</td>
  25. <td>{{ key.public_gists }}</td>
  26. <td>{{ key.email }}</td>
  27. <td>{{ key.followers }}</td>
  28. <td>{{ key.following }}</td>
  29. </tr>
  30. {% endfor %}
  31. </tbody>
  32. </table>
  33. </div>
  34. </div>
  35. </body>
  36. </html>