gurl_o/plugins/tps/birzha/components/myoffers/default.htm

83 lines
3.6 KiB
HTML

{% 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>
</div>
</div>
</div>
</div>
<!-- Breadcumb Area -->
<!-- Wishlist Table Area -->
<div class="wishlist-table section_padding_100 clearfix">
<div class="container">
{% if products.count() == 0 %}
<div class="container mb-5">
<div class="row d-block justify-content-center align-items-center">
<div class="col-6 d-block mx-auto">
<div class="text-center">
<img src="{{ 'assets/img/core-img/no-products.png'|theme }}" alt="Gurluşyk, Gurluşyk platform, bezeg gurluşyk, gipsler merkezi">
</div>
</div>
<div class="col-6 d-block mx-auto">
<div class="text-center">
<p>Şu wagtlykça haryt ýok</p>
</div>
</div>
</div>
</div>
{% else %}
<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>
<img src="{{ product.images[0].thumb(60,60, { mode: 'crop' }) }}" alt="Gurluşyk, Gurluşyk platform, bezeg gurluşyk, gipsler merkezi, {{ product.name }}">
</td>
<td>
<a href="{{ 'product'|page({id: product.id}) }}">{{ product.name }}</a>
</td>
<td>{{ product.price }} TMT</td>
<td align="center" width="25%">
<button
data-request="onDeleteOffer"
data-request-data="id: {{product.id}}"
data-request-flash
class="btn btn-primary btn-sm">Pozmak</button>
<a href="{{ 'addProduct'|page({productId: product.id}) }}" class="btn btn-primary btn-sm">Üýtgetmek</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endif %}
</div>
</div>