2014-05-28 18:12:45 +05:30
|
|
|
= content_for :splash_nav do
|
|
|
|
|
%li
|
2014-06-26 15:13:23 +05:30
|
|
|
%a.smoothscroll{ href: '#registration' } Registration
|
2014-11-14 11:58:36 +01:00
|
|
|
|
|
|
|
|
.container
|
|
|
|
|
.row
|
|
|
|
|
.col-md-12.text-center
|
|
|
|
|
%h1 Registration
|
2016-02-02 00:16:43 +01:00
|
|
|
|
|
|
|
|
- if @conference.registration_limit_exceeded?
|
2016-02-02 21:19:14 +01:00
|
|
|
%p
|
2016-02-02 00:16:43 +01:00
|
|
|
Sorry, the conference registration limit has exceeded
|
2016-02-02 21:19:14 +01:00
|
|
|
- else
|
2016-02-02 00:16:43 +01:00
|
|
|
- if @conference.tickets.empty?
|
|
|
|
|
%p.lead
|
|
|
|
|
Going to
|
|
|
|
|
= @conference.short_title
|
|
|
|
|
is free of charge.
|
|
|
|
|
%p
|
|
|
|
|
We only ask you to register yourself until
|
|
|
|
|
= @conference.registration_period.end_date.strftime('%A, %B %-d. %Y')
|
|
|
|
|
so we can plan for the right amount of people.
|
|
|
|
|
%p.cta-button
|
|
|
|
|
- else
|
|
|
|
|
%p
|
|
|
|
|
The registration period ends on
|
|
|
|
|
= @conference.registration_period.end_date.strftime('%A, %B %-d. %Y')
|
|
|
|
|
%p.cta-button
|
2016-07-05 00:10:18 +05:30
|
|
|
= link_to(new_conference_conference_registration_path(@conference.short_title), class: 'btn btn-lg btn-success') do
|
2014-11-20 14:57:03 +01:00
|
|
|
Register Now
|