steamSales.partial.html 886 B

123456789101112131415161718192021222324252627282930
  1. <div class="row text-center">
  2. <h1> Latest Steam Sale Data </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">Name</th>
  10. <th class="header">Release Date</th>
  11. <th class="header">Discount</th>
  12. <th class="header">Price</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr data-ng-repeat="data in steamSales.data ">
  17. <td>{{ data.name }}</td>
  18. <td>{{ data.releaseDates }}</td>
  19. <td>{{ data.discount }} </td>
  20. <td>{{ data.price }}</td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. </div>
  25. </div>