Skip to content

Commit

Permalink
Better display for comments table
Browse files Browse the repository at this point in the history
  • Loading branch information
poppastring committed Mar 11, 2021
1 parent 5c32cbb commit d55dee6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/DasBlog.Web.UI/Views/Admin/ManageComments.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
@foreach (var comment in Model)
{
<tr>
<td><a href="@dasBlogSettings.GetPermaLinkUrl(comment.BlogPostId)">@comment.Title</a></td>
<td><a href="mailto:@[email protected]&[email protected]">@comment.Name</a></td>
<td>@comment.SpamState</td>
<td>@comment.Text</td>
<td><comment-approval-link comment="@comment" admin="true" /></td>
<td><comment-delete-link comment="@comment" admin="true" /></td>
<td width="30%"><a href="@dasBlogSettings.GetPermaLinkUrl(comment.BlogPostId)">@comment.Title</a></td>
<td width="10%"><a href="mailto:@[email protected]">@comment.Name</a></td>
<td width="10%">@comment.SpamState</td>
<td width="30%">@comment.Text</td>
<td width="10%"><comment-approval-link comment="@comment" admin="true" /></td>
<td width="10%"><comment-delete-link comment="@comment" admin="true" /></td>
</tr>
}
</tbody>
Expand Down

0 comments on commit d55dee6

Please sign in to comment.