Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends "layout.html" %}
- {% block title %}
- Home
- {% endblock %}
- {% block main %}
- <h2>User currently logged in: {{ username }}</h2>
- <h2>UTC time now: {{ time }}</h2>
- {% if info %}
- <div class="table-container">
- <table>
- <thead>
- <tr>
- <th>Symbol</th>
- <th>Number of shares</th>
- <th>Current price</th>
- <th>Total Value</th>
- </tr>
- </thead>
- <tbody>
- {% for transaction in info %}
- <tr>
- <td>{{ transaction["symbol"] }}</td>
- <td>{{ transaction["total_shares"]}}</td>
- <td>{{ transaction["price"] | usd}}</td>
- <td>{{ transaction["total_value"] | usd}}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- {% endif %}
- <div class="table-container">
- <table>
- <tbody>
- <tr>
- <td><b>Cash Available</b></td>
- <td>{{ cash_avail | usd}}</td>
- </tr>
- <tr>
- <td><b>Grand total</b></td>
- <td>{{ grand_total | usd}}</td>
- </tr>
- </tbody>
- </table>
- </div>
- <form action="/" method="post">
- <input type="number" name="money" min="0" max="1000000" placeholder="Enter amount">
- <button class="btn btn-primary" type="submit" name="button" value="add-money">Add money</button>
- </form>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement