26 lines
524 B
Plaintext
26 lines
524 B
Plaintext
|
%h1 Listing locations
|
||
|
|
||
|
%table
|
||
|
%tr
|
||
|
%th Title
|
||
|
%th Address
|
||
|
%th Latitude
|
||
|
%th Longitude
|
||
|
%th
|
||
|
%th
|
||
|
%th
|
||
|
|
||
|
- @locations.each do |location|
|
||
|
%tr
|
||
|
%td= location.title
|
||
|
%td= location.address
|
||
|
%td= location.latitude
|
||
|
%td= location.longitude
|
||
|
%td= link_to 'Show', location
|
||
|
%td= link_to 'Edit', edit_location_path(location)
|
||
|
%td= link_to 'Destroy', location, :method => :delete, :data => { :confirm => 'Are you sure?' }
|
||
|
|
||
|
%br
|
||
|
|
||
|
= link_to 'New Location', new_location_path
|