|
|
|
@ -7,8 +7,10 @@
|
|
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
|
|
|
|
<% container.attachments.each_with_index do |attachment, i| %>
|
|
|
|
|
<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}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => 'description', :style => "display: inline-block;") %><span class="ispublic-label"><%= l(:field_is_public) %>:</span>
|
|
|
|
|
<%= check_box_tag("attachments[p#{i}][is_public_checkbox]", attachment.is_public, attachment.is_public == 1 ? true : false, :class => 'is_public') %>
|
|
|
|
|
<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => 'upload_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;") %>
|
|
|
|
|
<!--<span class="ispublic-label"><%#= l(:field_is_public) %>:</span>-->
|
|
|
|
|
<%#= check_box_tag("attachments[p#{i}][is_public_checkbox]", attachment.is_public, attachment.is_public == 1 ? true : false, :class => 'is_public') %>
|
|
|
|
|
<%= if attachment.id.nil?
|
|
|
|
|
#待补充代码
|
|
|
|
|
else
|
|
|
|
@ -21,24 +23,7 @@
|
|
|
|
|
</span>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% container.saved_attachments.each_with_index do |attachment, i| %>
|
|
|
|
|
<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}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => 'description', :style => "display: inline-block;") %>
|
|
|
|
|
<span class="ispublic-label"><%= l(:field_is_public) %>:</span>
|
|
|
|
|
<%= check_box_tag("attachments[p#{i}][is_public_checkbox]", attachment.is_public, attachment.is_public == 1 ? true : false, :class => 'is_public') %>
|
|
|
|
|
<%= if attachment.id.nil?
|
|
|
|
|
#待补充代码
|
|
|
|
|
else
|
|
|
|
|
link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload')
|
|
|
|
|
end
|
|
|
|
|
%>
|
|
|
|
|
<%#= render :partial => 'tags/tag', :locals => {:obj => attachment, :object_flag => "6"} %>
|
|
|
|
|
|
|
|
|
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
|
|
|
|
</span>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</span>
|
|
|
|
|
<% project = project %>
|
|
|
|
|