instagramUser.partial.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <div class="jumbotron">
  2. <div class="container">
  3. <div class="row text-center">
  4. <h1> Instagram User Data </h1>
  5. </div>
  6. <div class="col-lg-12">
  7. <div class="table-responsive">
  8. <table class="table table-bordered table-hover table-striped tablesorter">
  9. <thead>
  10. <tr>
  11. <th>Username</th>
  12. <th>ID</th>
  13. <th>Bio</th>
  14. <th>Website</th>
  15. <th>Profile Image</th>
  16. <th>Full Name</th>
  17. <th>Following</th>
  18. <th>Followers</th>
  19. <th>Total Media</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr data-ng-repeat="data in instagramUserData">
  24. <td>{{data.username}}</td>
  25. <td>{{data.id}}</td>
  26. <td>{{data.bio}}</td>
  27. <td>{{data.website}}</td>
  28. <td><img src="{{data.profile_picture}}"></td>
  29. <td>{{data.full_name}}</td>
  30. <td>{{data.counts.follows}}</td>
  31. <td>{{data.counts.followed_by}}</td>
  32. <td>{{data.counts.media}}</td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. <img data-ng-repeat= "i in instagramUserMediaData.data" src="{{i.images.thumbnail.url}}">
  37. </div>
  38. </div>
  39. </div>
  40. </div>