ahmedraza

index.html

Mar 12th, 2017
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block title %}
  4.     Portfolio
  5. {% endblock %}
  6.  
  7. {% block main %}
  8.  
  9.     <table>
  10.         <tr>
  11.             <th>Stocks</th>
  12.             <th>Shares</th>
  13.             <th>Current Price</th>
  14.             <th>Total</th>
  15.         </tr>
  16.  
  17.         {% for stock in symbol %}
  18.             <tr>
  19.                 <td>{{ stock["symbol"] }}</td>
  20.                 <td>{{ stock["shares"] }}</td>
  21.                 <td>{{ stock["currentprice"] }}</td>
  22.                 <td>{{ stock ["total"] }} </td>
  23.             </tr>
  24.         {% endfor %}
  25.  
  26. {% endblock %}
Add Comment
Please, Sign In to add comment