osem-fcy/app/views/conferences/_booths.html.haml

17 lines
571 B
Text

.row
.col-md-12.text-center
%h2 Booths
.row.row-centered
- @conference.confirmed_booths.each do |booth|
.col-md-2.col-sm-2.col-centered.col-top.booth
%a.thumbnail{ href: '#',
data: { toggle: 'modal', target: "#modal-booth-#{booth.id}" } }
- if booth.picture?
= image_tag get_logo(booth),
class: ['img-responsive', 'img-rounded'],
title: booth.title
- else
.caption
%h3.text-center= booth.title
- content_for :modals do
= render 'modal_description', object: booth