changed chart to line graph with date using stock prices for placeholder

This commit is contained in:
Nico Melone
2025-01-22 17:45:11 -06:00
parent 0c6098a011
commit 4c1593b230
3 changed files with 14 additions and 9 deletions

View File

@@ -8,15 +8,17 @@
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Date</th>
<th>Google Stock Price</th>
<th>Apple Stock Price</th>
</tr>
</thead>
<tbody>
{% for row in table_data %}
{% for index,row in table_data.iterrows() %}
<tr>
<td>{{ row[0] }}</td>
<td>{{ row[1] }}</td>
<td>{{ row['date'] }}</td>
<td>{{ row['GOOG'] }}</td>
<td>{{ row['AAPL'] }}</td>
</tr>
{% endfor %}
</tbody>