Sha256: 89902e48f2ddf3f2affe7e7c02fd4f651e9641b4db7c1ce03a34fed3f9a0de90
Contents?: true
Size: 693 Bytes
Versions: 9
Compression:
Stored size: 693 Bytes
Contents
<% add_title 'Erbits' %> <table class="table table-bordered"> <thead> <tr> <th>Name</th> <th>Description</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @erbits.each do |erbit| %> <tr> <td><%= erbit.name %></td> <td><%= erbit.description %></td> <td><%= link_to :show.l, erbit, class: 'btn btn-success' %></td> <td><%= link_to :edit.l, edit_erbit_path(erbit), class: 'btn btn-info' %></td> <td><%= link_to :destroy.l, erbit, method: :delete, class: 'btn btn-danger', data: { confirm: :are_you_sure.l } %></td> </tr> <% end %> </tbody> </table> <p> <%= link_to :new.l(name: 'Erbit'), new_erbit_path, class: 'btn btn-primary' %> </p>
Version data entries
9 entries across 9 versions & 1 rubygems