socialforge/app/views/bids/new_bid.html.erb

15 lines
507 B
Plaintext
Raw Normal View History

2013-08-01 10:33:49 +08:00
<div class="box tabular">
<%= form_tag({:controller => 'bids',
:action => 'index',
:remote => true,
:method => :post,
:id => 'new-bid-form'}) do %>
<p>需求名称:<%= text_field_tag 'bid_title' %></p>
<p>需求描述:</p>
<p><%= text_area_tag 'bid_description' %></p>
<p>投资预算:<%= text_field_tag 'bid_budget' %></p>
<p>投资时限:<%= text_field_tag 'bid_deadline' %></p>
<%= submit_tag l(:button_submit) %>
<%end%>
</div>