|
|
|
@ -2,7 +2,9 @@
|
|
|
|
|
<% if file.is_public? || User.current.member_of_course?(course) %>
|
|
|
|
|
<div class="re_con_box" id="container_files_<%= file.id %>">
|
|
|
|
|
<div class="">
|
|
|
|
|
<%= link_to_attachment file, :download => true,:text => truncate(file.filename,length: 35, omission: '...'), :title => file.filename+"\n"+file.description.to_s,:class => "c_dblue f_14 f_b f_l hiddent" %>
|
|
|
|
|
<%= link_to truncate(file.filename,length: 35, omission: '...'),
|
|
|
|
|
download_named_attachment_path(file.id, file.filename),
|
|
|
|
|
:title => file.filename+"\n"+file.description.to_s, :style => "overflow: hidden; white-space: nowrap;text-overflow: ellipsis;",:class => "c_dblue f_14 f_b f_l" %>
|
|
|
|
|
<% if User.current.logged? %>
|
|
|
|
|
<% if (is_course_teacher(User.current,@course) || file.author_id == User.current.id) && course_contains_attachment?(@course,file) %>
|
|
|
|
|
<%= link_to("选入我的其他课程",quote_resource_show_course_file_path(@course,file),:class => "f_l re_select c_lorange",:remote => true) if has_course?(User.current,file) %>
|
|
|
|
@ -17,11 +19,12 @@
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to("选入我的课程",quote_resource_show_course_file_path(@course,file),:class => "f_l re_select c_lorange",:remote => true) if has_course?(User.current,file) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= file_preview_tag(file, class: 'f_l re_open') %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div class="">
|
|
|
|
|
<div class="mt5">
|
|
|
|
|
<p class="f_l mb5 c_grey02">文件大小:<%= number_to_human_size(file.filesize) %></p>
|
|
|
|
|
<%= link_to( l(:button_delete), attachment_path(file),
|
|
|
|
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete,:class => "f_r re_de") if delete_allowed && file.container_id == @course.id && file.container_type == "Course"%>
|
|
|
|
|