-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f1b23f
commit 56642ae
Showing
3 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,19 +19,20 @@ | |
<tr> | ||
<th scope="col">Blog Title</th> | ||
<th scope="col">Name</th> | ||
<th scope="col">IP Address</th> | ||
<th scope="col">Status</th> | ||
<th scope="col">Comment Text</th> | ||
<th scope="col">Approval</th> | ||
<th scope="col">Delete</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tbody class="dbc-admin-comment-table"> | ||
@foreach (var comment in Model) | ||
{ | ||
<tr> | ||
<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.AuthorIPAddress</td> | ||
<td width="20%"><a href="@dasBlogSettings.GetPermaLinkUrl(comment.BlogPostId)">@comment.Title</a></td> | ||
<td width="15%"><a href="mailto:@[email protected]">@comment.Name</a></td> | ||
<td width="5%">@comment.AuthorIPAddress</td> | ||
<td width="10%">@comment.SpamState</td> | ||
<td width="30%">@comment.Text</td> | ||
<td width="10%"><comment-approval-link comment="@comment" admin="true" /></td> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,3 +150,6 @@ | |
height: 100%; | ||
} | ||
|
||
tbody.dbc-admin-comment-table td { | ||
word-break: break-all; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.