mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-02-03 13:17:33 +00:00
HTML formatting of logs.
This commit is contained in:
parent
6a9ce408d8
commit
4972b04c45
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
@foreach(var i in Model.OrderByDescending(x=>x.Timestamp))
|
@foreach(var i in Model.OrderByDescending(x=>x.Timestamp))
|
||||||
{
|
{
|
||||||
<tr>
|
<tr>
|
||||||
<td>@i.Description</td>
|
<td>@Html.Raw(Html.Encode(i.Description))</td>
|
||||||
<td>@Html.UserLink(i.UserId) at @i.Timestamp</td>
|
<td>@Html.UserLink(i.UserId) at @i.Timestamp</td>
|
||||||
<td>@i.Level</td>
|
<td>@i.Level</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Add table
Reference in a new issue