Sha256: f5c9e5d54e0f349cbe99733582ad4f872e782fa68b27ee7c9228350174f93708

Contents?: true

Size: 485 Bytes

Versions: 2

Compression:

Stored size: 485 Bytes

Contents

<h1>Listing locations</h1>

<table>
  <tr>
    <th>Name</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @locations.each do |location| %>
  <tr>
    <td><%= location.name %></td>
    <td><%= link_to 'Show', location %></td>
    <td><%= link_to 'Edit', edit_location_path(location) %></td>
    <td><%= link_to 'Destroy', location, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Location', new_location_path %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acts-as-taggable-on-dynamic-0.0.3 samples/demo-plain/app/views/locations/index.html.erb
acts-as-taggable-on-dynamic-0.0.2 samples/demo-plain/app/views/locations/index.html.erb