{% extends 'layout.html.twig' %}
{% block content %}
<div class="category-info">
<table align="center" class="table table-striped table-bordered ">
<thead>
<tr>
<th>Serial No</th>
<th>Category Name</th>
<th>Title Tag</th>
<th>Category Slug</th>
<th>Date Added</th>
<th>Keywords Tag</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for category in categoryList %}
<tr>
<td>{{ category.categories_id|e }}</td>
<td>{{ category.categories_name|e }}</td>
<td>{{ category.categories_htc_title_tag|e }}</td>
<td>{{ category.category_slug|e }}</td>
<td>{{ category.date_added|e }}</td>
<td>{{ category.categories_htc_keywords_tag|e }}</td>
<td><a href="{{ path('Category', {'id': category.categories_id}) }}"class="btn btn-success btn-sm">View Details</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% for category in paginator %}
{% endfor %}
<br />
{% include 'content/pagination.html.twig' %}
</div>
{% endblock %}