mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
@@ -75,7 +75,7 @@
|
|||||||
else if (commentEntry.Comment.Status == CommentStatus.Pending) { @T("Pending"); }
|
else if (commentEntry.Comment.Status == CommentStatus.Pending) { @T("Pending"); }
|
||||||
else { @T("Approved"); }
|
else { @T("Approved"); }
|
||||||
</td>
|
</td>
|
||||||
<td>@commentEntry.Comment.UserName</td>
|
<td>@commentEntry.Comment.Author</td>
|
||||||
<td>
|
<td>
|
||||||
@if (commentEntry.Comment.CommentText != null) {
|
@if (commentEntry.Comment.CommentText != null) {
|
||||||
var text = commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : (commentEntry.Comment.CommentText + T(" ..."));
|
var text = commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : (commentEntry.Comment.CommentText + T(" ..."));
|
||||||
|
Reference in New Issue
Block a user