Spaces:
Runtime error
Runtime error
File size: 548 Bytes
79cf85f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!-- templates/table.html -->
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>BTC Price</th>
<th>Prediction</th>
<th>Investment Value</th>
</tr>
</thead>
<tbody>
{% for index, row in data.iterrows() %}
<tr>
<td>{{ index }}</td>
<td>{{ row['BTC Price'] }}</td>
<td>{{ row['Prediction'] }}</td>
<td>{{ row['Investment Value'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
|