summaryrefslogtreecommitdiff
path: root/Pages/Report.cshtml
diff options
context:
space:
mode:
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)