2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_attachment_new)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= error_messages_for 'attachment' %>
|
2006-12-16 19:31:11 +03:00
|
|
|
<div class="box">
|
|
|
|
<%= start_form_tag ({ :action => 'add_file', :id => @project }, :multipart => true, :class => "tabular") %>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-12-16 19:31:11 +03:00
|
|
|
<p><label for="version_id"><%=l(:field_version)%> <span class="required">*</span></label>
|
|
|
|
<%= select_tag "version_id", options_from_collection_for_select(@versions, "id", "name") %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2007-01-01 14:26:56 +03:00
|
|
|
<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
|
|
|
|
<%= link_to_function image_tag('add'), "addFileField()" %></label>
|
2007-01-01 15:09:09 +03:00
|
|
|
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= human_size(Attachment.max_size) %>)</em></p>
|
2006-12-16 19:31:11 +03:00
|
|
|
</div>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= submit_tag l(:button_add) %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|