Sha256: d08b49669e8d4e30ae233495834bb4349ce30380257d17338e478d98655dbfe9

Contents?: true

Size: 800 Bytes

Versions: 19

Compression:

Stored size: 800 Bytes

Contents

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

<h1>Listing Places</h1>

<table>
  <thead>
    <tr>
      <th>Term</th>
      <th>City</th>
      <th>Country</th>
      <th>Latitude</th>
      <th>Longitude</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @places.each do |place| %>
      <tr>
        <td><%= place.term %></td>
        <td><%= place.city %></td>
        <td><%= place.country_id %></td>
        <td><%= place.latitude %></td>
        <td><%= place.longitude %></td>
        <td><%= link_to 'Show', place %></td>
        <td><%= link_to 'Edit', edit_place_path(place) %></td>
        <td><%= link_to 'Destroy', place, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Place', new_place_path %>

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
enju_event-0.3.5 app/views/places/index.html.erb
enju_event-0.4.0.rc.1 app/views/places/index.html.erb
enju_event-0.3.4 app/views/places/index.html.erb
enju_event-0.3.3 app/views/places/index.html.erb
enju_event-0.4.0.beta.2 app/views/places/index.html.erb
enju_event-0.4.0.beta.1 app/views/places/index.html.erb
enju_event-0.3.2 app/views/places/index.html.erb
enju_event-0.3.1 app/views/places/index.html.erb
enju_event-0.3.0 app/views/places/index.html.erb
enju_event-0.3.0.rc.1 app/views/places/index.html.erb
enju_event-0.3.0.beta.1 app/views/places/index.html.erb
enju_event-0.2.3 app/views/places/index.html.erb
enju_event-0.2.2 app/views/places/index.html.erb
enju_event-0.2.1 app/views/places/index.html.erb
enju_event-0.2.0 app/views/places/index.html.erb
enju_event-0.2.0.beta.4 app/views/places/index.html.erb
enju_event-0.2.0.beta.3 app/views/places/index.html.erb
enju_event-0.2.0.beta.2 app/views/places/index.html.erb
enju_event-0.2.0.beta.1 app/views/places/index.html.erb