quandl.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. {% include 'hackathon/base.html' %}
  5. <h1 class="text-center"> Quandl Collection </h1>
  6. <h2 class="text-center"> Dow Jones Data </h2>
  7. <div class="col-lg-12">
  8. <div class="table-responsive">
  9. <table class="table table-bordered table-hover table-striped tablesorter">
  10. <thead>
  11. <tr>
  12. <th class="header"> Name <i class="icon-sort"></i></th>
  13. <th class="header"> Description <i class="icon-sort"></i></th>
  14. <th class="header"> Data <i class="icon-sort"></i></th>
  15. <th class="header"> Code <i class="icon-sort"></i></th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {% for data in everyData.dow %}
  20. <tr>
  21. <td>{{ data.name }}</td>
  22. <td>{{ data.description }}</td>
  23. <td>{{ data.data }}</td>
  24. <td>{{ data.code }}</td>
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>
  29. </div>
  30. </div>
  31. <div class="col-lg-12">
  32. <div class="table-responsive">
  33. <table class="table table-bordered table-hover table-striped tablesorter">
  34. <thead>
  35. <tr>
  36. <th class="header"> Name <i class="icon-sort"></i></th>
  37. <th class="header"> Description <i class="icon-sort"></i></th>
  38. <th class="header"> Data <i class="icon-sort"></i></th>
  39. <th class="header"> Code <i class="icon-sort"></i></th>
  40. </tr>
  41. </thead>
  42. <tbody>
  43. {% for data in everyData.snp %}
  44. <tr>
  45. <td>{{ data.name }}</td>
  46. <td>{{ data.description }}</td>
  47. <td>{{ data.data }}</td>
  48. <td>{{ data.code }}</td>
  49. </tr>
  50. {% endfor %}
  51. </tbody>
  52. </table>
  53. </div>
  54. </div>
  55. <div class="col-lg-12">
  56. <div class="table-responsive">
  57. <table class="table table-bordered table-hover table-striped tablesorter">
  58. <thead>
  59. <tr>
  60. <th class="header"> Name <i class="icon-sort"></i></th>
  61. <th class="header"> Description <i class="icon-sort"></i></th>
  62. <th class="header"> Data <i class="icon-sort"></i></th>
  63. <th class="header"> Code <i class="icon-sort"></i></th>
  64. </tr>
  65. </thead>
  66. <tbody>
  67. {% for data in everyData.nasdaq %}
  68. <tr>
  69. <td>{{ data.name }}</td>
  70. <td>{{ data.description }}</td>
  71. <td>{{ data.data }}</td>
  72. <td>{{ data.code }}</td>
  73. </tr>
  74. {% endfor %}
  75. </tbody>
  76. </table>
  77. </div>
  78. </div>
  79. </body>
  80. </html>