|
|
@ -1,6 +1,6 @@
|
|
|
|
<span id="attachments_fields" xmlns="http://www.w3.org/1999/html">
|
|
|
|
<span id="attachments_fields" xmlns="http://www.w3.org/1999/html">
|
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
|
|
|
<% container.attachments.each_with_index do |attachment, i| %>
|
|
|
|
<% container.saved_attachments.each_with_index do |attachment, i| %>
|
|
|
|
<span id="attachments_p<%= i %>" class="attachment">
|
|
|
|
<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}][filename]", attachment.filename, :class => 'filename readonly', :readonly=>'readonly')%>
|
|
|
|
<%= text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => 'description', :style=>"display: inline-block;") %>
|
|
|
|
<%= text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => 'description', :style=>"display: inline-block;") %>
|
|
|
|