Sha256: 604339da9a4d8147b04051820939191602cfc3850c5ca80a98bbd1635bc32845

Contents?: true

Size: 788 Bytes

Versions: 5

Compression:

Stored size: 788 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Address Searches</h1>

<table class="table">
  <thead>
    <tr>
      <th>Sentiment</th>
      <th>Search string</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @address_searches.each do |address_search| %>
      <tr id="address-search-<%= address_search.id %>">
        <td><%= address_search.sentiment %></td>
        <td><%= address_search.search_string %></td>
        <td><%= link_to 'Show', address_search %></td>
        <td><%= link_to 'Edit', edit_address_search_path(address_search) %></td>
        <td><%= link_to 'Destroy', address_search, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Address Search', new_address_search_path %>

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
ezii-browser-1.0.0 server/redux-os/app/views/address_searches/index.html.erb
mega-os-1.0.0 app/views/address_searches/index.html.erb
jester-data-8.0.0 app/views/address_searches/index.html.erb
ezii-os-5.2.1 app/views/address_searches/index.html.erb
ezii-os-2.0.1 app/views/address_searches/index.html.erb