blob: c017aab4f80b1e75b5c389b6fe27c28872b06ea7 (
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
31
32
33
34
35
|
<p id="notice"><%= notice %></p>
<h1>Listing Downloads</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Filename</th>
<th>Type</th>
<th>Description</th>
<th>Hits</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @downloads.each do |download| %>
<tr>
<td><%= download.name %></td>
<td><%= download.filename %></td>
<td><%= download.type %></td>
<td><%= download.description %></td>
<td><%= download.hits %></td>
<td><%= link_to 'Show', download %></td>
<td><%= link_to 'Edit', edit_download_path(download) %></td>
<td><%= link_to 'Destroy', download, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Download', new_download_path %>
|