blob: 92590521dc23d9dd7b59ec2401fcb3bab3665fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@model Tango.MachineService.Views.Downloads.IndexViewModel
@section styles
{
<link rel="stylesheet" href="~/Styles/Downloads.css">
}
<table class="container">
<thead>
<tr>
<th><h1>Name</h1></th>
<th><h1>Date</h1></th>
<th><h1>User</h1></th>
<th><h1>Comments</h1></th>
</tr>
</thead>
<tbody>
@foreach (var item in Model.Downloads)
{
<tr>
<td>
<a href="/Downloads/Download?id=@item.ID">@item.Name</a>
</td>
<td>@item.Date</td>
<td>@item.User</td>
<td>@item.Comments</td>
</tr>
}
</tbody>
</table>
|