changed chart to line graph with date using stock prices for placeholder
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user