c90b07386d
- Extract inline styles to wwwroot/css/admin.css - Bootstrap Icons for nav and buttons - Styled page headers, table, empty state, readonly fields - Email Channels admin: list, create, edit, delete - GetAllEmailChannelsQuery + handler - AdminChannelsController with full CRUD - form id + form= attribute pattern for EditorLayout footer buttons Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
18 lines
464 B
Plaintext
18 lines
464 B
Plaintext
@{
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
<div class="card shadow-sm">
|
|
<div class="card-header bg-primary text-white">
|
|
<h5 class="mb-0 editor-card-header">
|
|
<i class="bi bi-pencil-square"></i>
|
|
@ViewData["EditorTitle"]
|
|
</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
@RenderBody()
|
|
</div>
|
|
<div class="card-footer d-flex gap-2">
|
|
@RenderSection("FormActions", required: false)
|
|
</div>
|
|
</div>
|