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

Version Path
geopolitical-3.0.0 app/views/geopolitical/cities/index.html.haml
geopolitical-2.0.0 app/views/geopolitical/cities/index.html.haml
geopolitical-1.0.5 app/views/geopolitical/cities/index.html.haml
geopolitical-1.0.3 app/views/geopolitical/cities/index.html.haml
geopolitical-1.0.2 app/views/geopolitical/cities/index.html.haml
geopolitical-1.0.0 app/views/geopolitical/cities/index.html.haml
geopolitical-0.9.9 app/views/geopolitical/cities/index.html.haml
geopolitical-0.9.7 app/views/geopolitical/cities/index.html.haml
geopolitical-0.9.5 app/views/geopolitical/cities/index.html.haml
geopolitical-0.9.3 app/views/geopolitical/cities/index.html.haml
geopolitical-0.9.1 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.8 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.7 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.6 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.4 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.3 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.2 app/views/geopolitical/cities/index.html.haml
geopolitical-0.8.1 app/views/geopolitical/cities/index.html.haml