2012-12-11 00:09:41 +04:00
|
|
|
<span id="attachments_fields">
|
2012-02-17 01:00:11 +04:00
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
|
|
|
<% container.saved_attachments.each_with_index do |attachment, i| %>
|
2012-12-11 00:09:41 +04:00
|
|
|
<span id="attachments_p<%= i %>">
|
|
|
|
<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => 'filename') +
|
|
|
|
text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 255, :placeholder => l(:label_optional_description), :class => 'description') +
|
|
|
|
link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload') %>
|
|
|
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
2012-02-17 01:00:11 +04:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2008-02-29 22:46:58 +03:00
|
|
|
</span>
|
2012-12-11 00:09:41 +04:00
|
|
|
<span class="add_attachment">
|
2012-12-15 14:03:34 +04:00
|
|
|
<%= file_field_tag 'attachments[dummy][file]',
|
2012-12-11 00:09:41 +04:00
|
|
|
:id => nil,
|
2012-12-15 14:03:34 +04:00
|
|
|
:class => 'file_selector',
|
2012-12-11 00:09:41 +04:00
|
|
|
:multiple => true,
|
|
|
|
:onchange => 'addInputFiles(this);',
|
|
|
|
: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)
|
|
|
|
} %>
|
|
|
|
(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
|
|
|
|
</span>
|
|
|
|
|
2012-12-11 00:19:26 +04:00
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'attachments' %>
|
|
|
|
<% end %>
|