Sha256: 0208e9a9133cb346bc0a930f5129d592cbaf3c8e7ebeaba0985271388fd5bbc0

Contents?: true

Size: 670 Bytes

Versions: 1

Compression:

Stored size: 670 Bytes

Contents

.container
  .row
    .col-xs-12
      = render 'header'
      
    - @cities.each do |city|
      .col-xs-3
        .panel.panel-default
          .panel-heading
            = link_to city.name, city_path(city)
            = link_to '[~]', edit_city_path(city)
            .small.gray= city.id
            .cities-meta= "R(#{city.reports.length}) G(#{city.galleries.length}) V(#{city.videos.length}) U(#{city.current_users.length})"
    
          - if city.profile_photo.blank?
            = image_missing
            %div{ :style => "width: 100px; height: 100px; background: #cecece;" }
          - else
            = image_tag city.profile_photo.photo.url(:thumb)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ish_manager-0.1.8.25 app/views/ish_manager/cities/index.haml