15 lines
587 B
Plaintext
15 lines
587 B
Plaintext
|
<h3><%= l :label_bidding_homework %></h3>
|
||
|
<div id="put-bid-form">
|
||
|
<%= form_for HomeworkAttach.new, :method => :post, :url => {:controller => 'bids', :action => 'add_homework'}, :update => "bidding_project_list", :complete => '$("#put-bid-form").hide();', :html => {:multipart => true} do |f| %>
|
||
|
<fieldset>
|
||
|
<legend>
|
||
|
<%= l(:label_attachment_plural) %>
|
||
|
</legend>
|
||
|
<p id="put-bid-form-partial">
|
||
|
<%= render :partial => 'attachments/form' %>
|
||
|
</p>
|
||
|
</fieldset>
|
||
|
<%= submit_tag l(:button_create) %>
|
||
|
<%= link_to (t :button_back), project_for_bid_homework_path %>
|
||
|
<% end %>
|
||
|
</div>
|