{% extends 'layout.html.twig' %}
{% block content %}
<div class="manufacturers-info">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Serial No</th>
<th>Manufacturers Name</th>
<th>Title Tag</th>
<th>Description Tag</th>
<th>Manufacturers Date</th>
<th>Manufacturers Image</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for manufacturers in manufacturersList %}
<tr>
<td>{{ manufacturers.manufacturers_id|e }}</td>
<td>{{ manufacturers.manufacturers_name|e }}</td>
<td>{{ manufacturers.manufacturers_htc_title_tag|e }}</td>
<td>{{ manufacturers.manufacturers_htc_desc_tag|e }}</td>
<td>{{ manufacturers.date_added|e }}</td>
<td>{% if manufacturers.manufacturers_image is not empty %}<img width="150px" src="{{ asset('/var/assets/' ~ manufacturers.manufacturers_image) }}">{% endif %}</td>
<td><a href="{{ path('manufacturers', {'id': manufacturers.manufacturers_id}) }}"class="btn btn-success btn-sm">View Details</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% for manufacturers in paginator %}
{% endfor %}
<br />
{% include 'content/pagination.html.twig' %}
</div>
{% endblock %}