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.
9 lines
833 B
9 lines
833 B
= columns(medium: 12) do
|
|
%p=_'articles.conference_registration.paragraphs.Contact_Info', :s, 2
|
|
= form_tag register_path(@this_conference.slug) do
|
|
= textfield :name, @name, required: true, heading: 'articles.conference_registration.headings.name', big: true
|
|
= textfield :location, (params[:location] || location(@registration.city ||lookup_ip_location)), required: true, heading: 'articles.conference_registration.headings.location'
|
|
= checkboxes :languages, User.AVAILABLE_LANGUAGES, (current_user.languages || [I18n.locale]).map(&:to_sym), 'languages', heading: 'articles.conference_registration.headings.languages'
|
|
.actions.next-prev
|
|
= button (params[:step] == :save ? :save : :next), value: :contact_info
|
|
= button :previous, value: :prev_contact_info, class: :subdued, formnovalidate: true
|
|
|