@model List @{ ViewData["Title"] = "문서 관리"; }

@ViewData["Title"]


Total : @((Model?.Count ?? 0).ToString("N0"))
@if (Model == null || !Model.Any()) { } else { @foreach (var row in Model) { string url = $"https://{ViewBag.siteURL}/{row.Code}"; } }
ID 제목 주소 조회 수 등록일시 수정일시 비고
No Data.
@row.ID @row.Subject @url @row.Views @row.CreatedAt @row.UpdatedAt