Sha256: a14528c0f9dafe01b2dcd6448b0c66d8b2c2a0a82d986cba63b49713d5fbad07
Contents?: true
Size: 476 Bytes
Versions: 6
Compression:
Stored size: 476 Bytes
Contents
<h1>Audios</h1> <table> <%- @audios.each do |audio| -%> <%= content_tag :tr, audio, :class => cycle('odd','even') do %> <td><%= audio.name %></td> <td><%= link_to 'Show', audio_path(audio) %></td> <td><%= link_to 'Edit', edit_audio_path(audio) %></td> <td><%= link_to 'Destroy', audio_path(audio), :method => :delete %></td> <% end %> <%- end -%> </table> <p> <%= link_to 'New', new_audio_path %> <%= link_to 'Back', root_path %> </p>
Version data entries
6 entries across 6 versions & 1 rubygems