📄 new.rhtml
字号:
<h1>New price - Initialize it!</h1>
<%= error_messages_for(:price) %>
<%= start_form_tag :action => 'create' %>
<p><label for="price_adults">Adults</label><br/>
<%= text_field 'price', 'adults' %></p>
<p><label for="price_children">Children</label><br/>
<%= text_field 'price', 'children' %></p>
<p>Default price</p>
<%= text_field_tag "default_price", "" ,:size => 3 , :class => "price" %>
<p><b>Room:</b><br>
<select name="price[room_id]">
<% @rooms.each do |room| %>
<option value="<%= room.id %>">
<%= room.name %>
</option>
<% end %>
</select>
<%= submit_tag "Create" %>
<%= end_form_tag %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -