quandl.html 3.0 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. <h2 class="text-center"> SnP 500 Data </h2>
  32. <div class="col-lg-12">
  33. <div class="table-responsive">
  34. <table class="table table-bordered table-hover table-striped tablesorter">
  35. <thead>
  36. <tr>
  37. <th class="header"> Name <i class="icon-sort"></i></th>
  38. <th class="header"> Description <i class="icon-sort"></i></th>
  39. <th class="header"> Data <i class="icon-sort"></i></th>
  40. <th class="header"> Code <i class="icon-sort"></i></th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. {% for data in everyData.snp %}
  45. <tr>
  46. <td>{{ data.name }}</td>
  47. <td>{{ data.description }}</td>
  48. <td>{{ data.data }}</td>
  49. <td>{{ data.code }}</td>
  50. </tr>
  51. {% endfor %}
  52. </tbody>
  53. </table>
  54. </div>
  55. </div>
  56. <h2 class="text-center"> Nasdaq Data </h2>
  57. <div class="col-lg-12">
  58. <div class="table-responsive">
  59. <table class="table table-bordered table-hover table-striped tablesorter">
  60. <thead>
  61. <tr>
  62. <th class="header"> Name <i class="icon-sort"></i></th>
  63. <th class="header"> Description <i class="icon-sort"></i></th>
  64. <th class="header"> Data <i class="icon-sort"></i></th>
  65. <th class="header"> Code <i class="icon-sort"></i></th>
  66. </tr>
  67. </thead>
  68. <tbody>
  69. {% for data in everyData.nasdaq %}
  70. <tr>
  71. <td>{{ data.name }}</td>
  72. <td>{{ data.description }}</td>
  73. <td>{{ data.data }}</td>
  74. <td>{{ data.code }}</td>
  75. </tr>
  76. {% endfor %}
  77. </tbody>
  78. </table>
  79. </div>
  80. </div>
  81. </body>
  82. </html>