This commit is contained in:
2024-01-30 09:22:28 +07:00
parent 2e4cf30a14
commit 222fd7f727

View File

@@ -83,7 +83,7 @@
<table class="w-[100%] mt-[20px] product-list"> <table class="w-[100%] mt-[20px] product-list">
<thead> <thead>
<tr> <tr>
<th>STT</th> <th class="whitespace-nowrap">STT</th>
<th>ID</th> <th>ID</th>
<th>Ảnh</th> <th>Ảnh</th>
<th>Sản phẩm (Tổng số: 1.742)</th> <th>Sản phẩm (Tổng số: 1.742)</th>
@@ -106,9 +106,9 @@
{% increment counter %} {% increment counter %}
<tr> <tr>
<td>{{ counter }}</td> <td>{{ counter }}</td>
<td>#{{item.id}}</td> <td class="whitespace-nowrap">#{{item.id}}</td>
<td> <td>
<img class="block m-auto" src="{{item.image.thumb}}" alt=""> <img class="block mx-auto my-0 w-[70px] h-[50px]" src="{{item.image.thumb}}" alt="">
<span class="text-center block">{{item.image_count}} ảnh</span> <span class="text-center block">{{item.image_count}} ảnh</span>
<i class="icons icon-edit"></i> <i class="icons icon-edit"></i>
</td> </td>