@page @model Admin.Pages.Forum.Reports.Comment.IndexModel @using Microsoft.AspNetCore.Mvc.Rendering @using Domain.Entities.Forum.ValueObject @{ ViewData["Title"] = "댓글 신고 관리"; }
|
|
게시판 | 댓글 | 게시글 ID | 신고자 | 사유 | 등록일 | ||
|---|---|---|---|---|---|---|---|---|
| 유형 | 상태 | 메모 | ||||||
| No Data. | ||||||||
|
|
@row.BoardName | [@row.CommentID] @row.Comment | @row.PostID | @(row.MemberName ?? $"ID:{row.MemberID}") | @row.Reason | @row.CreatedAt | ||
| @(typeLabels.GetValueOrDefault(row.Type, "-")) | @if (row.Status == ReportStatus.Received) { 접수 } else if (row.Status == ReportStatus.Processing) { 처리중 } else if (row.Status == ReportStatus.Completed) { 완료 } | @row.Memo | ||||||