Sha256: b1497e0243ebbaaabf7b5d3de672e09f46b9953a11eef84037993bd7fa7982b0
Contents?: true
Size: 633 Bytes
Versions: 2
Compression:
Stored size: 633 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Repeaters</h1> <table> <thead> <tr> <th>Name</th> <th>Slug</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @repeaters.each do |repeater| %> <tr> <td><%= repeater.name %></td> <td><%= repeater.slug %></td> <td><%= link_to 'Show', repeater %></td> <td><%= link_to 'Edit', edit_repeater_path(repeater) %></td> <td><%= link_to 'Destroy', repeater, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Repeater', new_repeater_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
binda-0.0.3 | app/views/binda/repeaters/index.html.erb |
binda-0.0.2 | app/views/binda/repeaters/index.html.erb |