Sha256: d1dca059d796c30de6bcbc406a7f201bd0f926c540477e249e2e2b6c5c59271b

Contents?: true

Size: 867 Bytes

Versions: 2

Compression:

Stored size: 867 Bytes

Contents

<% content_for :content do %>
<h2><%= h(name) %></h2>
<h3><%= h(t.runit.services.log.downloads) %></h3>
<table>
  <caption><%= h(name + ': ' + t.runit.services.log.downloads) %></caption>
  <thead>
    <tr>
      <th><%= h(t.runit.services.log.modified) %></th>
      <th><%= h(t.runit.services.log.file_name) %></th>
      <th><%= h(t.runit.services.log.file_size) %></th>
      <th></th>
     </tr>
  </thead>
  <tbody>
  <% files.each do |f| %>
    <tr class="<%= even_or_odd ? 'even' : 'odd' %>">
      <td title="<%= h(l(f[:modified], :full)) %>"><%= h(l(f[:modified], :human)) %></td>
      <td><%= h(f[:name]) %></td>
      <td title="<%= h(f[:size]) %>"><%= h(human_bytes(f[:size])) %></td>
      <td><a href="/<%= h(name) %>/log-download/<%= h(f[:name]) %>"><%= h(t.runit.services.log.download) %>&hellip;</a></td>
    </tr>
  <% end %>
  </tbody>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
runit-man-1.10.1 views/log_downloads.erubis
runit-man-1.10.0 views/log_downloads.erubis