2015-08-26 17:29:47 +08:00
|
|
|
<div class="mt10">
|
2015-08-26 13:56:37 +08:00
|
|
|
<span id="attachments_fields" class="attachments_fields">
|
|
|
|
<% if defined?(container) && container && container.saved_attachments %>
|
|
|
|
<% container.attachments.each_with_index do |attachment, i| %>
|
|
|
|
<span id="attachments_p<%= i %>">
|
|
|
|
<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => 'filename link_file', :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')%>
|
|
|
|
<%= link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload') unless attachment.id.nil? %>
|
|
|
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
|
|
|
</span>
|
2015-08-28 11:32:57 +08:00
|
|
|
<div class="cl"></div>
|
2015-08-26 17:29:47 +08:00
|
|
|
<% end %>
|
|
|
|
<% container.saved_attachments.each_with_index do |attachment, i| %>
|
2015-08-26 13:56:37 +08:00
|
|
|
<span id="attachments_p<%= i %>">
|
|
|
|
<%= 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')%>
|
|
|
|
<%= link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload') unless attachment.id.nil? %>
|
|
|
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
|
|
|
</span>
|
2015-08-28 11:32:57 +08:00
|
|
|
<div class="cl"></div>
|
2015-08-26 17:29:47 +08:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<%= file_field_tag 'attachments[dummy][file]',
|
|
|
|
:id => '_file',
|
|
|
|
:class => ie8? ? '' : 'file_selector',
|
|
|
|
:multiple => true,
|
|
|
|
:onchange => 'addInputFiles(this);',
|
|
|
|
:style => ie8? ? '' : 'display:none',
|
|
|
|
: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',:project =>nil),
|
|
|
|
:description_placeholder => l(:label_optional_description),
|
|
|
|
:field_is_public => l(:field_is_public),
|
|
|
|
:are_you_sure => l(:text_are_you_sure),
|
|
|
|
:file_count => l(:label_file_count),
|
2015-11-11 11:39:02 +08:00
|
|
|
:lebel_file_uploding => l(:lebel_file_uploding),
|
2015-08-26 17:29:47 +08:00
|
|
|
:delete_all_files => l(:text_are_you_sure_all)
|
|
|
|
} %>
|
2015-12-11 14:57:09 +08:00
|
|
|
<span class="fl fontGrey2 group_detail_info"></span>
|
|
|
|
<div class="cl"></div>
|
|
|
|
<span class="fl fontGrey2" id="group_members"></span>
|
|
|
|
<div class="cl"></div>
|
|
|
|
<% if @homework && @homework.homework_type == 3 %>
|
2015-12-17 10:17:13 +08:00
|
|
|
<% unless defined?(show_member) && show_member %>
|
|
|
|
<sapn class="fl fontGrey2" id="group_members_show">
|
|
|
|
合作成员:<%=User.current.show_name %>(组长)
|
|
|
|
</sapn>
|
|
|
|
<span id="student_work_group_textarea" class="ml10 c_red fl"></span>
|
|
|
|
<% end %>
|
2015-12-11 14:57:09 +08:00
|
|
|
<% end %>
|
|
|
|
<div class="cl"></div>
|
|
|
|
<span class="fl fontGrey2" id="relate_project_show">
|
2015-12-11 18:00:55 +08:00
|
|
|
<% if @homework && @homework.homework_type == 3 && @homework.homework_detail_group.base_on_project == 1 %>
|
2015-12-11 14:57:09 +08:00
|
|
|
<% unless @homework.student_work_projects.where("user_id = #{User.current.id}").empty? %>
|
|
|
|
<% project = Project.find @homework.student_work_projects.where("user_id = #{User.current.id}").first.project_id %>
|
|
|
|
关联项目:<%=project.name %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</span>
|
2015-08-26 13:56:37 +08:00
|
|
|
</div>
|
2015-08-26 17:29:47 +08:00
|
|
|
<div class="cl"></div>
|
2015-08-26 13:56:37 +08:00
|
|
|
|
2015-08-26 17:29:47 +08:00
|
|
|
<div class="mt5 fl">
|
2015-09-01 11:29:43 +08:00
|
|
|
<!-- , user_import_resource_user_path(User.current.id,:homework_id=>container.id) -->
|
2015-12-02 11:14:46 +08:00
|
|
|
<a href="javascript:void(0);" class="AnnexBtn fl mt3 mr15" onclick="$('#_file').click();" title="请选择文件上传">上传附件</a>
|
2016-05-25 09:44:30 +08:00
|
|
|
<%= link_to "资源库", user_ref_resource_search_user_path(User.current.id, :homework_id => container.id), :class => "FilesBtn fl mt3 mr15", :title => "请从资源库中选择文件作为作品的附件", :remote => true %>
|
2015-09-07 23:09:19 +08:00
|
|
|
<% if defined?(has_program) && has_program %>
|
2016-01-29 18:17:27 +08:00
|
|
|
<div id="program_setting" class="fl">
|
|
|
|
<a href="javascript:void(0);" class="ProBtn fl mt3"title="请设置编程语言和输入测试集">编程</a>
|
|
|
|
<span class="fl C_lgrey mt3 program_detail_info mr15"></span>
|
|
|
|
</div>
|
2015-12-03 09:17:36 +08:00
|
|
|
<% end %>
|
|
|
|
<% if defined?(has_group) && has_group %>
|
2016-01-29 18:17:27 +08:00
|
|
|
<div id="group_setting" class="fl">
|
|
|
|
<a href="javascript:void(0);" class="groupBtn fl mt3" title="请设置分组作业的相关参数">分组</a>
|
|
|
|
</div>
|
2015-09-07 23:09:19 +08:00
|
|
|
<% end %>
|
2015-08-26 17:29:47 +08:00
|
|
|
</div>
|
2015-08-26 13:56:37 +08:00
|
|
|
|
2015-08-26 17:29:47 +08:00
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'attachments' %>
|
|
|
|
<% end %>
|