Sha256: 20c8b1a43a3f4d2b9766e7ce21874fbb582e99f5b3db15ae0fca144aaa6133c1
Contents?: true
Size: 890 Bytes
Versions: 18
Compression:
Stored size: 890 Bytes
Contents
.container .row .page-header %h1.title Cities =# render "shared/filter" = link_to "New City", new_city_path .row .content %table.table %thead %tr %th Nome %th ZIP %th Region %th Nation %th Population %th %tbody - for city in @cities %tr %td = city.name = link_to city.slug , city %td= city.zip %td= city.region.name if city.region %td= city.nation.name %td= city.souls %td{:align => 'right'} = link_to 'Edit', edit_city_path(city) = link_to 'Destroy', city, :confirm => 'Destroy city?', :method => :delete .row .pagination= paginate @cities .row = link_to 'Back', root_path
Version data entries
18 entries across 18 versions & 1 rubygems