Skip to content
Snippets Groups Projects
Commit 9c0ccd0f authored by Michael Fairchild's avatar Michael Fairchild
Browse files

default to 1 hour

parent 3e1e6cb3
No related branches found
No related tags found
No related merge requests found
......@@ -178,9 +178,10 @@ EIGHT_PM_MINUTES = 1200 # end time of calendar
</select>
<% else resource.minutes_per_reservation.nil? %>
<select id="reservation-length" name="length">
<% (1..4).each do |i| %>
<% (1..3).each do |i| %>
<option value="<%=i*15%>"><%=i*15%> minutes</option>
<% end %>
<option value="60" selected>1 hour</option>
<option value="90">1.5 hours</option>
<option value="120">2 hours</option>
</select>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment