mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
92 lines
5.5 KiB
Plaintext
92 lines
5.5 KiB
Plaintext
<%@ Page Language="C#" Inherits="Orchard.Mvc.ViewPage<CommentsIndexViewModel>" %>
|
|
<%@ Import Namespace="Orchard.Comments.Models"%>
|
|
<%@ Import Namespace="Orchard.Comments.ViewModels"%>
|
|
<h1><%=Html.TitleForPage(T("Manage Comments").ToString())%></h1>
|
|
<% using(Html.BeginFormAntiForgeryPost()) { %>
|
|
<%=Html.ValidationSummary() %>
|
|
<fieldset class="actions bulk">
|
|
<label for="publishActions"><%=_Encoded("Actions:") %></label>
|
|
<select id="publishActions" name="<%=Html.NameOf(m => m.Options.BulkAction)%>">
|
|
<%=Html.SelectOption(Model.Options.BulkAction, CommentIndexBulkAction.None, _Encoded("Choose action...").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.BulkAction, CommentIndexBulkAction.Approve, _Encoded("Approve").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.BulkAction, CommentIndexBulkAction.Pend, _Encoded("Pend").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.BulkAction, CommentIndexBulkAction.MarkAsSpam, _Encoded("Mark as Spam").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.BulkAction, CommentIndexBulkAction.Delete, _Encoded("Remove").ToString())%>
|
|
</select>
|
|
<input class="button" type="submit" name="submit.BulkEdit" value="<%=_Encoded("Apply") %>" />
|
|
</fieldset>
|
|
<fieldset class="actions bulk">
|
|
<label for="filterResults"><%=_Encoded("Filter:")%></label>
|
|
<select id="filterResults" name="<%=Html.NameOf(m => m.Options.Filter)%>">
|
|
<%=Html.SelectOption(Model.Options.Filter, CommentIndexFilter.All, _Encoded("All Comments").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.Filter, CommentIndexFilter.Approved, _Encoded("Approved Comments").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.Filter, CommentIndexFilter.Pending, _Encoded("Pending Comments").ToString()) %>
|
|
<%=Html.SelectOption(Model.Options.Filter, CommentIndexFilter.Spam, _Encoded("Spam").ToString())%>
|
|
</select>
|
|
<input class="button" type="submit" name="submit.Filter" value="<%=_Encoded("Apply") %>"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<table class="items" summary="<%=_Encoded("This is a table of the comments in your application") %>">
|
|
<colgroup>
|
|
<col id="Col1" />
|
|
<col id="Col2" />
|
|
<col id="Col3" />
|
|
<col id="Col4" />
|
|
<col id="Col5" />
|
|
<col id="Col6" />
|
|
<col id="Col7" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col"> ↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%></th>
|
|
<th scope="col"><%=_Encoded("Status") %></th>
|
|
<th scope="col"><%=_Encoded("Author") %></th>
|
|
<th scope="col"><%=_Encoded("Comment") %></th>
|
|
<th scope="col"><%=_Encoded("Date") %></th>
|
|
<th scope="col"><%=_Encoded("Commented On") %></th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
<%
|
|
int commentIndex = 0;
|
|
foreach (var commentEntry in Model.Comments) {
|
|
var ci = commentIndex;
|
|
%>
|
|
<tr>
|
|
<td>
|
|
<input type="hidden" value="<%=Model.Comments[commentIndex].Comment.Id %>" name="<%=Html.NameOf(m => m.Comments[ci].Comment.Id) %>"/>
|
|
<input type="checkbox" value="true" name="<%=Html.NameOf(m => m.Comments[ci].IsChecked) %>"/>
|
|
</td>
|
|
<td><% if (commentEntry.Comment.Status == CommentStatus.Spam) { %><%=_Encoded("Spam") %><% }
|
|
else if (commentEntry.Comment.Status == CommentStatus.Pending) { %><%=_Encoded("Pending") %><% }
|
|
else { %><%=_Encoded("Approved") %><% } %></td>
|
|
<td><%: commentEntry.Comment.UserName %></td>
|
|
<td>
|
|
<% if (commentEntry.Comment.CommentText != null) {%>
|
|
<%-- todo: (heskew) same text processing comment as on the public display, also need to use the ellipsis character instead of ... --%>
|
|
<%: commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : commentEntry.Comment.CommentText %><%=_Encoded(" ...") %>
|
|
<% } %>
|
|
</td>
|
|
<td><%=Html.DateTime(commentEntry.Comment.CommentDateUtc.GetValueOrDefault()) %></td>
|
|
<td><%=Html.ActionLink(commentEntry.CommentedOn, "Details", new { id = commentEntry.Comment.CommentedOn }) %></td>
|
|
<td>
|
|
<ul class="actions">
|
|
<li class="construct">
|
|
<a href="<%=Url.Action("Edit", new {commentEntry.Comment.Id}) %>" title="<%=_Encoded("Edit")%>"><%=_Encoded("Edit")%></a>
|
|
</li>
|
|
<li class="destruct">
|
|
<%-- a form in a form doesn't quite work <% using (Html.BeginFormAntiForgeryPost(Url.Action("Delete", new {id = commentEntry.Comment.Id, redirectToAction = "Details"}), FormMethod.Post, new { @class = "inline" })) { %>
|
|
<fieldset>
|
|
<button type="submit" class="ibutton remove" title="<%=_Encoded("Remove Comment") %>"><%=_Encoded("Remove Comment") %></button>
|
|
</fieldset><%
|
|
} %>
|
|
--%> </li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<%
|
|
commentIndex++;
|
|
} %>
|
|
</table>
|
|
</fieldset>
|
|
<% } %> |