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

10 lines
337 B
Plaintext
Raw Normal View History

2013-08-20 16:32:45 +08:00
<!-- fq -->
<h3><%=l(:label_new_call)%></h3>
<%= labelled_form_for @bid, :url => {:controller => 'bids', :action => 'create_bid'} do |f| %>
<div class="box tabular">
<%= render :partial => 'form', :locals => { :f => f } %>
<%= submit_tag l(:button_create) %>
<%= javascript_tag "$('#bid_name').focus();" %>
<% end %>
</div>