{% extends 'layout.html.twig' %}
{% block content %}
<div class="product-info">
<table align="center" class="table table-striped table-bordered ">
<thead>
<tr>
<th>Serial No</th>
<th>Product Name</th>
<th>Product Price</th>
<th>Product Viewed</th>
<th>Product Orderd</th>
<th>Product Status:</th>
<th>Product Image</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for product in proList %}
<tr>
<td>{{ product.product_id|e }}</td>
<td>{{ product.products_name|e }}</td>
<td>{{ product.products_price|e }}</td>
<td>{{ product.products_viewed|e }}</td>
<td>{{ product.products_ordered|e }}</td>
<td>{{ product.products_status|e }}</td>
<td> {% if product.products_image is not empty %}<img width="100px" src="{{ asset('/var/assets/' ~ product.products_image) }}"/>{% endif %}</td>
<td><a href="{{ path('Productdetail', {'id': product.product_id}) }}"class="btn btn-success btn-sm">View Details</a></td>
{# {{ dump(product.product_id) }}#}
</tr>
{% endfor %}
</tbody>
</table>
{% for product in paginator %}
{% endfor %}
<br />
{% include 'content/pagination.html.twig' %}
</div>
{% endblock %}