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
67 lines (54 sloc) 1.26 KB
{% extends 'shoppingCart/store_dashBoard.html' %}
{% block content %}
{% load widget_tweaks %}
<br>
<div class="container-fluid">
<div class="row">
<div class="col-md">
<div class="card card-body">
<h5>Store: {{store.name}}</h5>
<hr>
<a class="btn btn-outline-info btn-sm btn-block" href="">Update Store</a>
<a class="btn btn-outline-danger btn-sm btn-block" href="">Delete Store</a>
</div>
</div>
<div class="col-md">
<div class="card card-body">
<h5>Store Information</h5>
<hr>
<p>Name: {{store.name}}</p>
<p>Location: {{store.location}}</p>
<p>Capacity: {{store.name}}</p>
<p>Available: {{store.location}}</p>
</div>
</div>
<div class="col-md">
<div class="card card-body">
<h5>Total Stores Orders</h5>
<hr>
<h1 style="text-align: center;padding: 10px">{{total_store_orders}}</h1>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col">
<div class="card card-body">
<form method="get">
{% for field in filter.form %}
{{field.label}}
{{field|add_class:'form-control-sm'}}
{% endfor %}
<button class="btn btn-primary" type="submit">Search</button>
</form>
</div>
</div>
</div>
<br>
{% endfor %}
</table>
</div>
</div>
</div>
{% endblock content %}