blob: 276888aa72e798cada32bcaf3f91f1a3990c45c5 (
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
|
<p id="notice"><%= notice %></p>
<p>
<strong>Name:</strong>
<%= @download.name %>
</p>
<p>
<strong>Filename:</strong>
<%= @download.filename %>
</p>
<p>
<strong>Type:</strong>
<%= @download.type %>
</p>
<p>
<strong>Description:</strong>
<%= @download.description %>
</p>
<p>
<strong>Hits:</strong>
<%= @download.hits %>
</p>
<%= link_to 'Edit', edit_download_path(@download) %> |
<%= link_to 'Back', downloads_path %>
|