##// END OF EJS Templates
Merged r9982 from trunk....
Jean-Philippe Lang -
r9815:873a5cda4fb3
parent child
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -1,18 +1,18
1 1 <% if defined?(container) && container && container.saved_attachments %>
2 2 <% container.saved_attachments.each_with_index do |attachment, i| %>
3 3 <span class="icon icon-attachment" style="display:block; line-height:1.5em;">
4 4 <%= h(attachment.filename) %> (<%= number_to_human_size(attachment.filesize) %>)
5 5 <%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.id}.#{attachment.digest}" %>
6 6 </span>
7 7 <% end %>
8 8 <% end %>
9 9 <span id="attachments_fields">
10 10 <span>
11 11 <%= file_field_tag 'attachments[1][file]', :size => 30, :id => nil, :class => 'file',
12 12 :onchange => "checkFileSize(this, #{Setting.attachment_max_size.to_i.kilobytes}, '#{escape_javascript(l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)))}');" -%>
13 <%= text_field_tag 'attachments[1][description]', '', :id => nil, :class => 'description', :placeholder => l(:label_optional_description) %>
13 <%= text_field_tag 'attachments[1][description]', '', :id => nil, :class => 'description', :maxlength => 255, :placeholder => l(:label_optional_description) %>
14 14 <%= link_to_function(image_tag('delete.png'), 'removeFileField(this)', :title => (l(:button_delete))) %>
15 15 </span>
16 16 </span>
17 17 <span class="add_attachment"><%= link_to l(:label_add_another_file), '#', :onclick => 'addFileField(); return false;', :class => 'add_attachment' %>
18 18 (<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</span>
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now