You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
499 B
17 lines
499 B
8 years ago
|
= row do
|
||
|
= columns(medium: 12) do
|
||
|
= registration_step_header_title
|
||
|
- if @info.present?
|
||
|
= @info
|
||
|
- else
|
||
|
= registration_step_header_description
|
||
|
= row do
|
||
|
= columns(medium: 12) do
|
||
|
= save_registration_step do
|
||
|
.registration-step-options
|
||
|
.options
|
||
|
- [:yes, :maybe, :no].each do |option|
|
||
|
- class_name = [:unstyled]
|
||
|
- class_name << :selected if @will_attend == option
|
||
|
= button option, value: option, class: class_name
|