@page @model Admin.Pages.Forum.Comments.List.IndexModel @using Microsoft.AspNetCore.Mvc.Rendering @{ ViewData["Title"] = "댓글 관리"; }
|
|
내용 | 게시글 | 게시판 | 작성자 | 좋아요 | 싫어요 | 신고 | 작성일 |
|---|---|---|---|---|---|---|---|---|
| No Data. | ||||||||
|
|
@if (row.IsDeleted) { 삭제 } @if (row.IsSecret) { 비밀 } @if (row.IsReply) { 답글 } @(row.Content.Length > 80 ? row.Content[..80] + "..." : row.Content) | @(row.PostSubject.Length > 30 ? row.PostSubject[..30] + "..." : row.PostSubject) | @row.BoardName | @(row.Name ?? row.SID ?? "-") | @row.Likes | @row.Dislikes | @row.Reports | @row.CreatedAt |