15 lines
507 B
Plaintext
15 lines
507 B
Plaintext
<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>
|