mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-17 21:54:06 +00:00
* Cleanup the CSS * Fix more views then you have fingers and toes * Introduce position(weight) for sponsor levels * Fix bootstrap/datatable integration
21 lines
735 B
Text
21 lines
735 B
Text
.container
|
|
.row
|
|
.col-md-12.text-center
|
|
%h1
|
|
Support
|
|
=@conference.short_title
|
|
%p.lead
|
|
To support our event you can purchase tickets
|
|
.row
|
|
- @conference.tickets.each do |ticket|
|
|
%div{ class: (@conference.tickets.count <= 2 ? "col-md-#{12/@conference.tickets.count}" : "col-md-4") }
|
|
- if ticket.title.present?
|
|
%h4.text-center
|
|
=ticket.title
|
|
- if ticket.description.present?
|
|
= markdown(ticket.description)
|
|
.text-center
|
|
.btn-group
|
|
= link_to(conference_tickets_path(@conference.short_title), class: 'btn btn-success') do
|
|
Buy Ticket
|
|
= "#{humanized_money_with_symbol ticket.price}"
|