59 lines
2.4 KiB
HTML
59 lines
2.4 KiB
HTML
|
|
{% set order = __SELF__.order %}
|
||
|
|
<!-- Breadcumb Area -->
|
||
|
|
<div class="breadcumb_area">
|
||
|
|
<div class="container h-100">
|
||
|
|
<div class="row h-100 align-items-center">
|
||
|
|
<div class="col-12">
|
||
|
|
<h5>Zakaz</h5>
|
||
|
|
<ol class="breadcrumb">
|
||
|
|
<li class="breadcrumb-item"><a href="{{ 'index'|page }}">Esasy sahypa</a></li>
|
||
|
|
<li class="breadcrumb-item active">Zakaz # {{ order.order_id }}</li>
|
||
|
|
</ol>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!-- Breadcumb Area -->
|
||
|
|
|
||
|
|
<!-- Cart Area -->
|
||
|
|
<div class="cart_area section_padding_100_70 clearfix">
|
||
|
|
<div class="container">
|
||
|
|
<div class="row justify-content-between">
|
||
|
|
<div class="col-12">
|
||
|
|
<div class="cart-table">
|
||
|
|
<div class="table-responsive">
|
||
|
|
<table class="table table-bordered mb-30">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th scope="col">Surat</th>
|
||
|
|
<th scope="col">Haryt ady</th>
|
||
|
|
<th scope="col">Mukdary</th>
|
||
|
|
<th scope="col">Bahasy</th>
|
||
|
|
<th scope="col">Jemi</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
|
||
|
|
{% for item in order.items %}
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
<img src="{{ getProductImage(item.item) }}" alt="{{ getProductName(item.item) }}"/>
|
||
|
|
|
||
|
|
</td>
|
||
|
|
<td><a href="{{ 'product'|page({id: item.item}) }}">{{ getProductName(item.item) }}</a></td>
|
||
|
|
<td>{{ item.qty }}</td>
|
||
|
|
<td>{{ item.price }} TMT</td>
|
||
|
|
<td>{{ item.qty * item.price }} TMT</td>
|
||
|
|
</tr>
|
||
|
|
{% endfor %}
|
||
|
|
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!-- Cart Area End -->
|