From ba721772b9e7f896f52f433429e3a16f4389c596 Mon Sep 17 00:00:00 2001 From: Matt Barringer Date: Tue, 12 Feb 2013 20:57:39 +0100 Subject: [PATCH] Swap some checkboxes around --- app/views/conference_registration/register.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/conference_registration/register.html.haml b/app/views/conference_registration/register.html.haml index cb147cb1..dad44b20 100644 --- a/app/views/conference_registration/register.html.haml +++ b/app/views/conference_registration/register.html.haml @@ -14,8 +14,8 @@ = semantic_form_for(@registration, :url => register_conference_path(@conference.short_title), :html => { :method => :put }) do |f| = f.fields_for :person do |p| = p.text_field :public_name, :for => :person - = f.input :attending_social_events, :label => false = f.input :attending_with_partner, :label => false + = f.input :attending_social_events, :label => false = f.input :using_affiliated_lodging, :label => false = f.input :handicapped_access_required, :label => false = f.input :arrival, :as => :string, :input_html => {:value => (f.object.arrival.to_formatted_s(:db_without_seconds) unless f.object.arrival.nil?), :id => "registration-arrival-datepicker", :readonly => "readonly" }