Sha256: b67467738b5468471932ab6ed5a12faaee80bd57a94a044df28b1196b24c79a6

Contents?: true

Size: 1.06 KB

Versions: 34

Compression:

Stored size: 1.06 KB

Contents

#
# ishapi / features / _index
#

resource ||= site if defined? site
resource ||= city if defined? city

json.n_features features.count
json.features do
  json.array! features.limit( resource.n_features ) do |feature|

    json.name       feature.name       unless feature.name.blank?
    json.subhead    feature.subhead    unless feature.subhead.blank?
    json.link_path  feature.link_path  unless feature.link_path.blank?
    json.inner_html feature.inner_html unless feature.inner_html.blank?
    json.photo_url  feature.image_path unless feature.image_path.blank?
    json.created_at feature.created_at
    
    if feature.report
      r = feature.report
      json.name       r.name
      json.subhead    r.subhead
      json.reportname r.slug
      if r.photo
        json.photo_url  r.photo.photo.url( :thumb )
      end
    end
    
    if feature.gallery
      r = feature.gallery
      json.name        r.name
      json.subhead     r.subhead
      json.slug r.slug
      if r.photos[0]
        json.photo_url r.photos[0].photo.url( :thumb )
      end
    end

  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
ishapi-0.1.8.194 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.193 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.192 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.191 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.190 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.189 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.188 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.187 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.185 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.184 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.183 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.182 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.181 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.180 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.178 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.177 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.176 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.175 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.174 app/views/ishapi/features/_index.jbuilder
ishapi-0.1.8.173 app/views/ishapi/features/_index.jbuilder