Skip to content
Permalink
5cb1253178
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (24 sloc) 476 Bytes
{% extends 'shoppingCart/store_dashBoard.html' %}
{% block content %}
<br>
<div class="row">
<div class="col-md">
<div class="card card-body">
</div>
<div class="card card-body">
<table class="table">
<tr>
<th>Product</th>
<th>Price</th>
</tr>
{% for product in products %}
<tr>
<td>{{product.name}}</td>
<td>${{product.price}}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
{% endblock content %}