mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
16 lines
564 B
Text
16 lines
564 B
Text
%div.row
|
|
%h3 Tickets
|
|
-if !@conference.ticket_description.blank?
|
|
%p
|
|
= markdown(@conference.ticket_description)
|
|
- @conference.supporter_levels.each do |s|
|
|
%div.col-md-6
|
|
- if !s.title.blank?
|
|
%h4 #{ s.title }
|
|
-if !s.description.blank?
|
|
%p #{ s.description }
|
|
- if !s.url.blank?
|
|
%div.btn-group
|
|
= link_to "Buy Ticket", s.url, class: 'btn btn-success', target: '_blank'
|
|
- if !s.ticket_price.blank?
|
|
= button_tag "#{s.ticket_price}", class: 'btn btn-success'
|