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-05-28 18:12:45 +05:30
|
|
|
%div.container.text-center
|
|
|
|
|
%div.row
|
2014-06-24 20:05:45 +05:30
|
|
|
%h1 Registration
|
2014-05-28 18:12:45 +05:30
|
|
|
- if !@conference.registration_description.blank?
|
2014-08-01 12:23:33 +05:30
|
|
|
.lead
|
2014-06-29 17:44:27 +05:30
|
|
|
= markdown(@conference.registration_description)
|
2014-06-05 01:12:43 +05:30
|
|
|
- if @conference.registration_dates_given?
|
|
|
|
|
-if @conference.registration_end_date >= Date.today
|
|
|
|
|
%h4 Registration period #{ date_string(@conference.registration_start_date, @conference.registration_end_date) }
|
|
|
|
|
-else
|
|
|
|
|
%h4 Registration is Closed, it was from #{ date_string(@conference.registration_start_date, @conference.registration_end_date) }
|
2014-05-28 18:12:45 +05:30
|
|
|
- if @conference.registration_open?
|
2014-08-12 11:51:59 +03:00
|
|
|
= link_to "Register for #{@conference.short_title}", conference_register_path(@conference.short_title), :class =>"btn btn-success btn-lg", target: '_blank'
|
2014-05-29 20:23:33 +05:30
|
|
|
- if @conference.use_supporter_levels?
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.include_tickets_in_splash?
|
|
|
|
|
= render 'tickets'
|