Sha256: d1437bd8f7c9b6e11936217ae5cdaec6cf908e66e1c54d7f14209aad089b2e14
Contents?: true
Size: 559 Bytes
Versions: 7
Compression:
Stored size: 559 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Searches</h1> <table> <thead> <tr> <th>Query</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @searches.each do |search| %> <tr> <td><%= search.query %></td> <td><%= link_to 'Show', search %></td> <td><%= link_to 'Edit', edit_search_path(search) %></td> <td><%= link_to 'Destroy', search, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Search', new_search_path %>
Version data entries
7 entries across 7 versions & 4 rubygems