diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-03-27 18:58:09 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-03-27 18:58:09 +0000 |
commit | 57acc97e1f9d76c2edbb4eeabae4ea3dd635bb77 (patch) | |
tree | 8298ce7c00cc59a87269ba58dcc4ecaa51215470 /Pages/Report.cshtml | |
parent | fe5c628725260d0bee594108afe0eec1e802e8b2 (diff) |
Updated for new download table format.1.0
Diffstat (limited to 'Pages/Report.cshtml')
-rw-r--r-- | Pages/Report.cshtml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Pages/Report.cshtml b/Pages/Report.cshtml index ed7dbfa..624d61f 100644 --- a/Pages/Report.cshtml +++ b/Pages/Report.cshtml @@ -26,18 +26,22 @@ <table style width="100%"> <tr> - <td style="width:25%;"><b>Time</b></td> - <td style="width:25%;"><b>Key</b></td> - <td style="width:25%;"><b>IP Address</b></td> - <td style="width:25%;"><b>User Agent</b></td> + <td style="width:20%;"><b>Time</b></td> + <td style="width:15%;"><b>Key</b></td> + <td style="width:65%;"><b>Info</b></td> </tr> @foreach(Download obj in Model.Rows) { <tr> <td>@obj.Time</td> <td>@obj.Key</td> - <td>@obj.IpAddress</td> - <td>@obj.UserAgent</td> + <td> + @foreach (string s in obj.Info) + { + @s + <br> + } + </td> </tr> } </table>
\ No newline at end of file |