@using bitforum.Helpers; @{ ViewData["Title"] = "문서 관리"; var documents = ViewBag.Documents as List; var total = (documents?.Count ?? 0).ToString("N0"); }

@ViewData["Title"]


Total : @total
@if (documents == null || !documents.Any()) { } else { @foreach (var row in documents) { string url = $"https://{ViewBag.siteURL}/{row.Code}"; } }
ID 제목 주소 사용 조회 수 등록일시 수정일시 비고
No Data.
@row.ID @row.Subject @url @(row.IsActive ? "Y" : "N") @row.Views @row.CreatedAt.GetDateAt() @row.UpdatedAt.GetDateAt()