Sha256: 49e356493bb2c766f1c3e0577b71fa1ed109ea3b6e5c83b18f64f39c4fe665a2

Contents?: true

Size: 761 Bytes

Versions: 4

Compression:

Stored size: 761 Bytes

Contents

.container
  .row
    .page-header
      %h1.title Zones
      =# render "shared/filter"
      = link_to "New Zones", new_zone_path
  .row
    .content
      %table.table
        %thead
          %tr
            %th Abbr
            %th Name
            %th Kind
            %th Member
            %th
        %tbody
          - for zone in @zones
            %tr
              %td
                = zone.abbr
              %td
                = zone.name
                = link_to zone.slug, zone
              %td= zone.kind
              %td= zone.members.count
              %td.last
                =# link_to "Destroy!", nation_path(nation), :method => :delete
                = link_to  'Edit', edit_zone_path(zone)
  .row
    = link_to 'Back', root_path

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
geopolitical-0.8.3 app/views/geopolitical/zones/index.html.haml
geopolitical-0.8.2 app/views/geopolitical/zones/index.html.haml
geopolitical-0.8.1 app/views/geopolitical/zones/index.html.haml
geopolitical-0.8.0 app/views/geopolitical/zones/index.html.haml