Standardize admin pages and blog editor
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m39s

This commit is contained in:
2026-07-09 11:33:17 +09:00
parent 9cf6675dc9
commit 55933649f6
27 changed files with 825 additions and 68 deletions
@@ -1,4 +1,34 @@
@page
@model TaxBaik.Web.Pages.Admin.TaxProfiles.IndexModel
@{ ViewData["Title"] = "세무 프로필"; }
<section class="container py-5"><h1 class="h2 fw-bold">세무 프로필 관리</h1></section>
<section class="container-fluid py-4">
<partial name="_AdminPageHeader" model='("Tax", "세무 프로필 관리", "고객별 세무 속성을 관리합니다.", null, null)' />
<div class="card">
<div class="table-responsive">
<table class="table table-vcenter card-table">
<thead>
<tr><th>고객ID</th><th>사업유형</th><th>세무위험</th><th>다음신고일</th></tr>
</thead>
<tbody>
@if (Model.Items.Count == 0)
{
<tr><td colspan="4"><partial name="_EmptyState" model="세무 프로필이 없습니다." /></td></tr>
}
else
{
foreach (var item in Model.Items)
{
<tr>
<td>@item.ClientId</td>
<td>@item.BusinessType</td>
<td><partial name="_StatusBadge" model="@(item.TaxRiskLevel ?? "normal")" /></td>
<td>@item.NextFilingDueDate?.ToString("yyyy-MM-dd")</td>
</tr>
}
}
</tbody>
</table>
</div>
</div>
</section>