Sha256: d401d5d25f02ccb8d74f7d71a0ba8b9df638ba85da630f87a6c5e0eebd333839
Contents?: true
Size: 666 Bytes
Versions: 5
Compression:
Stored size: 666 Bytes
Contents
<h1>Listing Admin Site Item Tags</h1> <table class="table"> <thead> <tr> <th>Key</th> <th>Name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @tags.each do |tag| %> <tr> <td><%= tag.name %></td> <td><%= tag.key %></td> <td> <%= link_to 'Edit', [:edit, :admin, tag] %> </td> <td> <%= link_to 'Destroy', [:admin, tag], method: :delete, data: { confirm: 'Are you sure?' } %> </td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Site item tag', new_admin_site_item_tag_path, class: 'btn btn-primary' %>
Version data entries
5 entries across 5 versions & 1 rubygems