Skip to content

Instantly share code, notes, and snippets.

@ogredude
Created November 26, 2012 19:10
Show Gist options
  • Save ogredude/4149994 to your computer and use it in GitHub Desktop.
Save ogredude/4149994 to your computer and use it in GitHub Desktop.
<%= f.input :kind, :as => :radio, :label => "Is this a single or multiple trip?", :collection => kinds_collection, :label_html => {:class => "inline"} %>
<div class="control-group radio_buttons optional">
<label class="radio_buttons optional control-label inline">Is this a single or multiple trip?</label>
<div class="controls">
<label class="radio">
<input class="radio_buttons optional" id="offer_kind_single" name="offer[kind]" type="radio" value="Single">Single
</label>
<label class="radio">
<input class="radio_buttons optional" id="offer_kind_multiple" name="offer[kind]" type="radio" value="Multiple">Multiple
</label>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment