|
@@ -4,6 +4,7 @@
|
|
|
{% include 'hackathon/base.html' %}
|
|
{% include 'hackathon/base.html' %}
|
|
|
|
|
|
|
|
<h1 class="text-center"> Quandl Collection </h1>
|
|
<h1 class="text-center"> Quandl Collection </h1>
|
|
|
|
|
+
|
|
|
<h2 class="text-center"> Dow Jones Data </h2>
|
|
<h2 class="text-center"> Dow Jones Data </h2>
|
|
|
<div class="col-lg-12">
|
|
<div class="col-lg-12">
|
|
|
<div class="table-responsive">
|
|
<div class="table-responsive">
|
|
@@ -13,18 +14,17 @@
|
|
|
<th class="header"> Name <i class="icon-sort"></i></th>
|
|
<th class="header"> Name <i class="icon-sort"></i></th>
|
|
|
<th class="header"> Description <i class="icon-sort"></i></th>
|
|
<th class="header"> Description <i class="icon-sort"></i></th>
|
|
|
<th class="header"> Data <i class="icon-sort"></i></th>
|
|
<th class="header"> Data <i class="icon-sort"></i></th>
|
|
|
- <th class="header"> Code <i class="icon-sort"></i></th>
|
|
|
|
|
-
|
|
|
|
|
|
|
+ <th class="header"> Code <i class="icon-sort"></i></th>
|
|
|
</tr>
|
|
</tr>
|
|
|
</thead>
|
|
</thead>
|
|
|
<tbody>
|
|
<tbody>
|
|
|
|
|
|
|
|
- {% for data in data.dowjones %}
|
|
|
|
|
|
|
+ {% for key in data.dowjones %}
|
|
|
<tr>
|
|
<tr>
|
|
|
- <td>{{ data.name }}</td>
|
|
|
|
|
- <td>{{ data.description }}</td>
|
|
|
|
|
- <td>{{ data.data }}</td>
|
|
|
|
|
- <td>{{ data.code }}</td>
|
|
|
|
|
|
|
+ <td>{{ key.name }}</td>
|
|
|
|
|
+ <td>{{ key.description }}</td>
|
|
|
|
|
+ <td>{{ key.data }}</td>
|
|
|
|
|
+ <td>{{ key.code }}</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|