I'm using the code:
<fieldset>
<div class="row">
<div class="col-sm-5">
Price (in $): <%= f.input :price, label: false %>
</div>
<div class="col-sm-5">
<%= f.association :school, :collection => School.all.order(:name), as: :select %>
</div>
<div class="col-sm-2">
<%= f.label :_destroy, "Remove" %>
<%= f.check_box :_destroy %>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<%= f.input :begin, :include_blank => true %>
</div>
<div class="col-sm-6">
<%= f.input :enddate, :include_blank => true %>
</div>
</div>
</fieldset>
And ending up with this result:
https://i.stack.imgur.com/KISbQ.png
Is there any way I could make it so the 'begin' and 'enddate' forms don't take up 3 lines? I want to put 'begin' spanning only 1 line, and 'enddate' spanning the line below it. Any clue on how to do this?
(I'm one of two people working on this site and am unsure if 'begin' and 'enddate' forms are defined somewhere else)