{% extends "layout.html" %} {% block title %} History {% endblock %} {% block main %}

Transaction History

{% for entry in transactions %} {% endfor %}
Stock Symbol Action (Buy or Sell) Price at Purchase or Sale Number of Stocks Time and Date
{{ entry.symbol }} {{ entry.bs }} $ {{ entry.price_bs }} {{ entry.shares }} {{ entry.Timestamp }}
{% endblock %}