2012-02-17 01:00:11 +04:00
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
|
|
|
<% container.saved_attachments.each_with_index do |attachment, i| %>
|
|
|
|
<span class="icon icon-attachment" style="display:block; line-height:1.5em;">
|
|
|
|
<%= h(attachment.filename) %> (<%= number_to_human_size(attachment.filesize) %>)
|
|
|
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.id}.#{attachment.digest}" %>
|
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2008-02-29 22:46:58 +03:00
|
|
|
<span id="attachments_fields">
|
2011-07-10 00:11:18 +04:00
|
|
|
<span>
|
2012-07-29 14:12:26 +04:00
|
|
|
<%= file_field_tag 'attachments[1][file]', :id => nil, :class => 'file',
|
2011-11-26 02:32:07 +04:00
|
|
|
: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)))}');" -%>
|
2012-07-15 18:34:28 +04:00
|
|
|
<%= text_field_tag 'attachments[1][description]', '', :id => nil, :class => 'description', :maxlength => 255, :placeholder => l(:label_optional_description) %>
|
2011-09-18 05:12:17 +04:00
|
|
|
<%= link_to_function(image_tag('delete.png'), 'removeFileField(this)', :title => (l(:button_delete))) %>
|
|
|
|
</span>
|
2008-02-29 22:46:58 +03:00
|
|
|
</span>
|
2012-03-24 16:57:28 +04:00
|
|
|
<span class="add_attachment"><%= link_to l(:label_add_another_file), '#', :onclick => 'addFileField(); return false;', :class => 'add_attachment' %>
|
|
|
|
(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</span>
|