From 4a41336bffe47f5fb80f88b1a4530d8fdd75e649 Mon Sep 17 00:00:00 2001 From: differentreality Date: Sun, 28 Jul 2013 22:41:32 +0300 Subject: [PATCH] layout change to single line box for venue name and address --- app/views/admin/venue/venue_info.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/venue/venue_info.html.haml b/app/views/admin/venue/venue_info.html.haml index a4431b76..cdbda54d 100644 --- a/app/views/admin/venue/venue_info.html.haml +++ b/app/views/admin/venue/venue_info.html.haml @@ -4,8 +4,8 @@ = render 'admin/conference/sidebar', :activated => "Venue" .span9 = semantic_form_for(@venue, :url => admin_conference_venue_update_path(@conference.short_title),:html => {:multipart => true}) do |f| - = f.input :name - = f.input :address + = f.input :name, :input_html => {:rows => 1} + = f.input :address, :input_html => {:rows => 1} = f.input :website = f.input :description, :input_html => { :rows => 10, :cols => 20 } = f.action :submit, :as => :button, :button_html => {:class => "btn btn-primary"} \ No newline at end of file