2016-01-06 18:07:35 +08:00
|
|
|
|
|
|
|
<div id="popbox_upload" class="mb10" style="margin-top: -30px;color:#15bccf; font-size:16px;">
|
|
|
|
<div class="upload_con">
|
|
|
|
<h2 style="text-align: center"><%= l(:label_upload_files)%></h2>
|
|
|
|
<div class="upload_box">
|
|
|
|
<%= error_messages_for 'attachment' %>
|
|
|
|
<div id="network_issue" style="color: red; display: none;"><%= l(:label_file_upload_error_messages)%></div>
|
|
|
|
|
2016-01-07 14:47:47 +08:00
|
|
|
<%= form_tag(project_files_path(project), :multipart => true, :remote => !ie8?, :name=>"upload_form") do %>
|
|
|
|
<input type="hidden" name="in_project_toolbar" value="Y">
|
2016-01-06 18:07:35 +08:00
|
|
|
<!--<p class="c_grey fr mt10 mr5">-->
|
|
|
|
<div class="c_dark">
|
|
|
|
<input name="project_attachment_type[]" type="checkbox" value="1" checked class="c_dblue">软件版本</input> <span class="c_grey">|</span>
|
|
|
|
<input name="project_attachment_type[]" type="checkbox" value="2" class="c_dblue">文档</input> <span class="c_grey">|</span>
|
|
|
|
<input name="project_attachment_type[]" type="checkbox" value="3" class="c_dblue">代码</input> <span class="c_grey">|</span>
|
|
|
|
<input name="project_attachment_type[]" type="checkbox" value="4" class="c_dblue">媒体</input> <span class="c_grey">|</span>
|
|
|
|
<input name="project_attachment_type[]" type="checkbox" value="5" class="c_dblue">论文</input> <span class="c_grey">|</span>
|
|
|
|
<input name="project_attachment_type[]" type="checkbox" value="6" class="c_dblue">其他</input></a>
|
|
|
|
</div>
|
|
|
|
<div class="cl"></div>
|
|
|
|
<div>
|
|
|
|
<%= render :partial => 'files/new_style_attachment_list',:locals => {:container => project} %>
|
|
|
|
</div>
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
<a href="javascript:void(0);" class=" fr grey_btn mr40" onclick="hideModal();"><%= l(:button_cancel)%></a>
|
|
|
|
<!--<a id="submit_resource" href="javascript:void(0);" class="blue_btn fr" onclick="submit_resource();"><%#= l(:button_confirm)%></a>-->
|
2016-01-07 14:47:47 +08:00
|
|
|
<%= submit_tag '确定',:onclick=>'submit_resource();', :onfocus=>'this.blur()', :id=>'submit_resource', :class=>'sendSourceText fr' %>
|
2016-01-06 18:07:35 +08:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'attachments' %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function submit_resource()
|
|
|
|
{
|
|
|
|
$('#submit_resource').parent().submit();
|
|
|
|
}
|
|
|
|
</script>
|