Align admin list empty states
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m0s

This commit is contained in:
2026-07-09 16:06:42 +09:00
parent 1441d6b306
commit 89d457c549
4 changed files with 99 additions and 63 deletions
+28 -18
View File
@@ -4,20 +4,30 @@
<section class="admin-page-shell">
@await Html.PartialAsync("_AdminPageHeader", new TaxBaik.Web.Models.AdminPageHeaderModel("Support", "FAQ 관리", "질문과 답변을 관리합니다.", "/admin/faqs/create", "FAQ 작성"))
<div class="card">
<div class="table-responsive">
<table class="table table-vcenter card-table table-hover">
<thead>
<tr><th>질문</th><th>카테고리</th><th>활성</th><th>정렬</th><th class="text-end">작업</th></tr>
</thead>
<tbody>
@if (Model.Items.Count == 0)
{
<tr><td colspan="5">@await Html.PartialAsync("_EmptyState", "FAQ가 없습니다.")</td></tr>
}
else
{
foreach (var item in Model.Items)
@if (Model.Items.Count == 0)
{
<div class="empty py-5 border rounded bg-body">
<div class="empty-img">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-help-off" width="48" height="48" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 3l18 18"></path>
<path d="M12 17v.01"></path>
<path d="M12 13a2 2 0 1 0-2-2"></path>
<path d="M12 7a5 5 0 0 1 5 5"></path>
</svg>
</div>
<p class="empty-title">FAQ가 없습니다.</p>
</div>
}
else
{
<div class="card">
<div class="table-responsive">
<table class="table table-vcenter card-table table-hover">
<thead>
<tr><th>질문</th><th>카테고리</th><th>활성</th><th>정렬</th><th class="text-end">작업</th></tr>
</thead>
<tbody>
@foreach (var item in Model.Items)
{
<tr>
<td>@item.Question</td>
@@ -32,11 +42,11 @@
</td>
</tr>
}
}
</tbody>
</table>
</tbody>
</table>
</div>
</div>
</div>
}
</section>