From e3b6c735ff96824b839f7149ab500c84c55e65ea Mon Sep 17 00:00:00 2001 From: Matt Barringer Date: Tue, 12 Feb 2013 20:24:48 +0100 Subject: [PATCH] The public name needs to just be a string input --- app/views/conference_registration/register.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/conference_registration/register.html.haml b/app/views/conference_registration/register.html.haml index 928f0311..cb147cb1 100644 --- a/app/views/conference_registration/register.html.haml +++ b/app/views/conference_registration/register.html.haml @@ -12,8 +12,8 @@ .row-fluid .span12 = semantic_form_for(@registration, :url => register_conference_path(@conference.short_title), :html => { :method => :put }) do |f| - = f.fields_for :person do - = f.inputs :public_name, :as => :string, :for => :person + = 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 :using_affiliated_lodging, :label => false