##// END OF EJS Templates
fix British English version 'field_effective_date' (#14680, #22315)...
fix British English version 'field_effective_date' (#14680, #22315) r15406 has inconsistent in en-GB.yml and en.yml. git-svn-id: http://svn.redmine.org/redmine/trunk@15410 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12996:e3e14ce3a119
r15028:84e4bae59a9a
Show More
_form.html.erb
31 lines | 1.6 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged ajax_upload branch (#3957)....
r10748 <span id="attachments_fields">
Jean-Philippe Lang
Better handling of attachments when issue validation fails (#10253)....
r8771 <% if defined?(container) && container && container.saved_attachments %>
<% container.saved_attachments.each_with_index do |attachment, i| %>
Jean-Philippe Lang
Merged ajax_upload branch (#3957)....
r10748 <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('&nbsp;'.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}" %>
Jean-Philippe Lang
Better handling of attachments when issue validation fails (#10253)....
r8771 </span>
<% end %>
<% end %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 </span>
Jean-Philippe Lang
Merged ajax_upload branch (#3957)....
r10748 <span class="add_attachment">
Jean-Philippe Lang
Save the selected file just in case uploading stuff fails/is not supported....
r10781 <%= file_field_tag 'attachments[dummy][file]',
Jean-Philippe Lang
Merged ajax_upload branch (#3957)....
r10748 :id => nil,
Jean-Philippe Lang
Save the selected file just in case uploading stuff fails/is not supported....
r10781 :class => 'file_selector',
Jean-Philippe Lang
Merged ajax_upload branch (#3957)....
r10748 :multiple => true,
Toshi MARUYAMA
revert r13199 (#17151)...
r12996 :onchange => 'addInputFiles(this);',
Jean-Philippe Lang
Merged ajax_upload branch (#3957)....
r10748 :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>
Jean-Philippe Lang
Moved javascript include tag to head....
r10749 <% content_for :header_tags do %>
<%= javascript_include_tag 'attachments' %>
<% end %>