summaryrefslogtreecommitdiff
path: root/Pages/Report.cshtml
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-03-27 21:20:45 +0000
committerIan C <ianc@noddybox.co.uk>2024-03-27 21:20:45 +0000
commitab65bdaf1b5e2c6e4dd2523708739465b86d08d6 (patch)
tree2ea3f6e6396ef615a337e8533067cd4517e747bc /Pages/Report.cshtml
parent57acc97e1f9d76c2edbb4eeabae4ea3dd635bb77 (diff)
Added table styling and CSV buttonHEAD1.1master
Diffstat (limited to 'Pages/Report.cshtml')
-rw-r--r--Pages/Report.cshtml10
1 files changed, 6 insertions, 4 deletions
diff --git a/Pages/Report.cshtml b/Pages/Report.cshtml
index 624d61f..4b5907b 100644
--- a/Pages/Report.cshtml
+++ b/Pages/Report.cshtml
@@ -24,16 +24,18 @@
<h1>Download Details</h1>
-<table style width="100%">
+<form method="post" enctype="application/x-www-form-urlencoded"><input type="submit" name="csv" value="Download CSV"></form>
+
+<table style="width=100%;">
<tr>
- <td style="width:20%;"><b>Time</b></td>
+ <td style="width:25%;"><b>Time</b></td>
<td style="width:15%;"><b>Key</b></td>
- <td style="width:65%;"><b>Info</b></td>
+ <td style="width:60%;"><b>Info</b></td>
</tr>
@foreach(Download obj in Model.Rows)
{
<tr>
- <td>@obj.Time</td>
+ <td>@obj.Time.ToString("o", System.Globalization.CultureInfo.InvariantCulture)</td>
<td>@obj.Key</td>
<td>
@foreach (string s in obj.Info)