ahmedraza

index

Mar 14th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.05 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block title %}
  4. Your Portfolio
  5. {% endblock %}
  6.  
  7. {% block main %}
  8. <style type="text/css">
  9.   table{
  10.     border-collapse: collapse;
  11.     border: 1px solid black;
  12.     width: 100%;
  13.     height: 50px;
  14.   }
  15.  
  16.   table td,th{
  17.     border: 1px solid black;
  18.     text-align: center;
  19.   }
  20.   table th{
  21.       background-color: #4CAF50;
  22.   }
  23.   table tr td:nth-child(6),
  24. table tr td:nth-child(5) {
  25.     text-align: center;
  26.     border: none;
  27.     }
  28. </style>
  29. <table>
  30.     <tr>
  31.         <th>Stocks</th>
  32.         <th>Shares</th>
  33.         <th>Current Price</th>
  34.         <th>Total</th>
  35.         <th>Current Cash</th>
  36.         <th>Grand Total</th>
  37.        
  38.     </tr>
  39.  
  40.     {% for stock in symbol %}
  41.         <tr>
  42.             <td>{{ stock["symbol"] }}</td>
  43.             <td>{{ stock["shares"] }}</td>
  44.             <td>{{ stock["quoteprice"] }}</td>
  45.             <td>{{stock["shares"] * stock ["quoteprice"]}} </td>
  46.          
  47.     {% endfor %}
  48.         <td>{{cash}}</td>
  49.         <td>{{gtotal}}</td>
  50.         </tr>
  51.        
  52.  
  53. {% endblock %}
Add Comment
Please, Sign In to add comment