2013-08-01 10:33:49 +08:00
|
|
|
<span id="attachments_fields">
|
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
2014-05-16 17:45:20 +08:00
|
|
|
<% container.attachments.each_with_index do |attachment, i| %>
|
|
|
|
<span id="attachments_p<%= i %>" class="attachment">
|
|
|
|
<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => 'filename readonly', :readonly=>'readonly')%>
|
|
|
|
|
|
|
|
<%= text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 255, :placeholder => l(:label_optional_description), :class => 'description', :style=>"display: inline-block;") +
|
2013-08-01 10:33:49 +08:00
|
|
|
link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload') %>
|
2014-05-23 17:07:58 +08:00
|
|
|
<%#= render :partial => 'tags/tag', :locals => {:obj => attachment, :object_flag => "6"} %>
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<span class="add_attachment">
|
2014-04-17 08:33:44 +08:00
|
|
|
<%= button_tag "浏览", :type=>"button", :onclick=>"_file.click()" %>
|
|
|
|
<!--%= link_to image_tag(),"javascript:void(0)", :onclick => "_file.click()"%-->
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= file_field_tag 'attachments[dummy][file]',
|
2014-04-17 08:33:44 +08:00
|
|
|
:id => '_file',
|
2013-08-01 10:33:49 +08:00
|
|
|
:class => 'file_selector',
|
|
|
|
:multiple => true,
|
|
|
|
:onchange => 'addInputFiles(this);',
|
2014-04-17 08:33:44 +08:00
|
|
|
:style => 'display:none',
|
2013-08-01 10:33:49 +08:00
|
|
|
:data => {
|
|
|
|
:max_file_size => Setting.attachment_max_size.to_i.kilobytes,
|
|
|
|
:max_file_size_message => l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)),
|
|
|
|
:max_concurrent_uploads => Redmine::Configuration['max_concurrent_ajax_uploads'].to_i,
|
|
|
|
:upload_path => uploads_path(:format => 'js'),
|
|
|
|
:description_placeholder => l(:label_optional_description)
|
|
|
|
} %>
|
2014-04-17 08:33:44 +08:00
|
|
|
<span id="upload_file_count"><%= l(:label_no_file_uploaded)%></span>
|
2013-08-01 10:33:49 +08:00
|
|
|
(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'attachments' %>
|
|
|
|
<% end %>
|