2023-10-03 12:00:10 +00:00
|
|
|
{% set products = __SELF__.offers %}
|
|
|
|
|
<!-- Breadcumb Area -->
|
|
|
|
|
<div class="breadcumb_area">
|
|
|
|
|
<div class="container h-100">
|
|
|
|
|
<div class="row h-100 align-items-center">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<h5>Harytlarym</h5>
|
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
|
<li class="breadcrumb-item"><a href="{{ 'index'|page }}">Esasy sahypa</a></li>
|
|
|
|
|
<li class="breadcrumb-item active">Harytlarym</li>
|
|
|
|
|
</ol>
|
2023-07-23 05:57:06 +00:00
|
|
|
</div>
|
2023-10-03 12:00:10 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Breadcumb Area -->
|
|
|
|
|
|
|
|
|
|
<!-- Wishlist Table Area -->
|
|
|
|
|
<div class="wishlist-table section_padding_100 clearfix">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<div class="cart-table wishlist-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">Bahasy</th>
|
|
|
|
|
<th scope="col"></th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
|
|
{% for product in products %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
2023-10-15 20:26:14 +00:00
|
|
|
<img src="{{ product.images[0].thumb(60,60, { mode: 'crop' }) }}" alt="Gurluşyk, Gurluşyk platform, bezeg gurluşyk, gipsler merkezi, {{ product.name }}">
|
2023-10-03 12:00:10 +00:00
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="{{ 'product'|page({id: product.id}) }}">{{ product.name }}</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>{{ product.price }} TMT</td>
|
2023-10-12 20:59:00 +00:00
|
|
|
<td align="center" width="25%">
|
|
|
|
|
<button
|
2023-10-03 12:00:10 +00:00
|
|
|
data-request="onDeleteOffer"
|
|
|
|
|
data-request-data="id: {{product.id}}"
|
|
|
|
|
data-request-flash
|
2023-10-12 20:59:00 +00:00
|
|
|
class="btn btn-primary btn-sm">Pozmak</button>
|
|
|
|
|
<a href="{{ 'addProduct'|page({productId: product.id}) }}" class="btn btn-primary btn-sm">Üýtgetmek</a>
|
|
|
|
|
</td>
|
2023-10-03 12:00:10 +00:00
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2023-07-23 05:57:06 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-10-03 12:00:10 +00:00
|
|
|
</div>
|