Sha256: 8bdae921ef200873d7ec5d4eb2e92474098af921908b7507996029e37471cbfa
Contents?: true
Size: 900 Bytes
Versions: 1
Compression:
Stored size: 900 Bytes
Contents
<% content_for :content do %> <h2><%= h(name) %></h2> <h3><%= h(t.runit.services.log.downloads) %></h3> <table> <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> <tfoot> <tr> <td colspan="4"><%= h(t.runit.services.log.about_utc) %></td> </tr> </tfoot> <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[:label]) %></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) %>…</a></td> </tr> <% end %> </tbody> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
runit-man-1.10.3 | views/log_downloads.erubis |