summaryrefslogtreecommitdiff
path: root/app/views/downloads/index.html.erb
blob: 0f0afc90a5adf6d181ea247687b8b519af6cd6d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<p id="notice"><%= notice %></p>

<% @downloads.each do |download| %>
  <article>
    <h3><%= download.name %></h3>
    <p><%= download.description %></p>
    <p class="filedetails">
      <span>Type:</span> <%= download.type %>
      <span>Downloads:</span> <%= download.hits %>
    </p>
    <p><%= link_to "Download", download_path(download.filename) %></p>
  </article>
<% end %>