@page @model Admin.Pages.Forum.Attachments.PostImage.IndexModel @using Microsoft.AspNetCore.Mvc.Rendering @{ ViewData["Title"] = "게시글 이미지 관리"; }

@ViewData["Title"]


~

Total : @Model?.Total.ToString("N0")
@if (Model.List == null || Model.Total <= 0) { } else { @foreach (var row in Model.List) { } }
이미지 게시글 게시판 크기 해상도 상태 등록일
No Data.
@row.FileName
@row.FileName
@(row.PostSubject.Length > 25 ? row.PostSubject[..25] + "..." : row.PostSubject) @row.BoardName @(row.Size.HasValue ? $"{row.Size.Value / 1024:N0} KB" : "-") @(row.Width.HasValue && row.Height.HasValue ? $"{row.Width}x{row.Height}" : "-") @if (row.IsDisabled) { 비활성 } else { 활성 } @row.CreatedAt
@Html.AntiForgeryToken()
@section Scripts { }