summaryrefslogtreecommitdiff
path: root/app/trading/templates
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2021-07-15 15:49:51 -0400
committerluxagraf <sng@luxagraf.net>2021-07-15 15:49:51 -0400
commited0b407c830217331abe46fccecb7e9fb34783bd (patch)
tree04c9f36f4648a3e6399a1a551e17960b308ab1fd /app/trading/templates
parentb86864ae1e2c78adff3d982c7687124213bd878f (diff)
trad: added migrations
Diffstat (limited to 'app/trading/templates')
-rw-r--r--app/trading/templates/trading/list.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/trading/templates/trading/list.html b/app/trading/templates/trading/list.html
index ef496cd..a0f8a78 100644
--- a/app/trading/templates/trading/list.html
+++ b/app/trading/templates/trading/list.html
@@ -16,6 +16,7 @@
<th>% Goal</th>
<th>Risk/Reward</th>
<th>Price Calc</th>
+ <th>Notes</th>
</tr>
</thead>
{% for object in open_trades %}
@@ -32,6 +33,7 @@
<td>{{object.goal_percent}}</td>
<td>{{object.risk_reward}}</td>
<td><input class="close_price_calc" id="id_close_price_{{forloop.counter}}"> <span id=profit"></span></td>
+ <td class="notes">{{object.notes}}</td>
</tr>
{% endfor %}
</table>
@@ -51,6 +53,7 @@
<th>$ Goal</th>
<th>% Goal</th>
<th>Risk/Reward</th>
+ <th>Notes</th>
</tr>
</thead>
{% for object in watch_trades %}
@@ -67,6 +70,7 @@
<td>{{object.goal_percent}}</td>
<td>{{object.risk_reward}}</td>
<td><input id="id_close_price"> <span id=profit"></span></td>
+ <td class="notes">{{object.notes}}</td>
</tr>
{% endfor %}
</table>
@@ -103,7 +107,7 @@
<td>${{object.goal_dollars}}</td>
<td>${{object.realized_dollars}}</td>
<td>{{object.realized_percent}}</td>
- <td>{{object.notes}}</td>
+ <td class="notes">{{object.notes}}</td>
</tr>
{% endfor %}
</table>