update
This commit is contained in:
58
old/template/customer/customer_newsletter.html
Normal file
58
old/template/customer/customer_newsletter.html
Normal file
@@ -0,0 +1,58 @@
|
||||
<div class="w-full">
|
||||
<div class="p-3 rounded-sm bg-white shadow overflow-x-auto">
|
||||
<h1 class="text-2xl font-bold mb-3">Khách hàng góp ý</h1>
|
||||
|
||||
<div class="flex items-center justify-end mt-5 gap-3">
|
||||
<a href="/admin/customer/customer_add" class="btn btn-outline btn-view">
|
||||
<i class="iconify lucide--pencil"></i>
|
||||
<span class="">Thêm KH mới</span>
|
||||
</a>
|
||||
<a href="admin/customer/customer-group" class="btn btn-outline btn-view">
|
||||
<i class="iconify lucide--users"></i>
|
||||
<span class="">Các nhóm KH</span>
|
||||
</a>
|
||||
<a href="admin/customer/customer-newsletter" class="btn btn-outline btn-view">
|
||||
<i class="iconify lucide--mail"></i>
|
||||
<span class="">KH nhận bản tin</span>
|
||||
</a>
|
||||
<a href="" class="btn btn-outline btn-view">
|
||||
<i class="iconify lucide--file-x"></i>
|
||||
<span class="">Tải file excel</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="overflow-x-auto sm:whitespace-nowrap mt-5 border-base-200 shadow rounded-sm">
|
||||
<table class="mt-[15px] table">
|
||||
<thead>
|
||||
<tr class="bg-base-200 font-bold text-black">
|
||||
<th>STT</th>
|
||||
<th>Họ tên</th>
|
||||
<th>Email</th>
|
||||
<th>Ngày đăng ký</th>
|
||||
<th>Thông tin khác</th>
|
||||
<th>Lựa chọn</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Trung Hiếu</td>
|
||||
<td>trunghieu27072009@gmail.com</td>
|
||||
<td>19-07-2023, 4:45 pm</td>
|
||||
<td>test reply</td>
|
||||
<td>
|
||||
<div class='list-btn flex items-center'>
|
||||
<a href=""
|
||||
class='w-[32px] h-[32px] border-[1px] border-[#0041E8] rounded-[4px] text-center leading-[30px] flex items-center justify-center mr-[5px]'><i
|
||||
class='icons icon-edit'></i></a>
|
||||
<a href=""
|
||||
class='w-[32px] h-[32px] rounded-[4px] text-center leading-[30px] flex items-center justify-center mr-[5px]'><i
|
||||
class='icons icon-delete'></i></a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user