2014-06-09 14:23:31 +08:00
|
|
|
|
|
|
|
<% attachmenttypes = @course.attachmenttypes %>
|
|
|
|
<% sufixtypes = @course.contenttypes %>
|
|
|
|
|
|
|
|
<span class="borad-title"><%= t(:label_user_course) %>资源共享区</span>
|
|
|
|
|
|
|
|
<div class="content-title-top">
|
|
|
|
|
|
|
|
<%#= link_to(l(:label_attachment_new), 'javascript:void(0);', :onclick=>"$('#file_buttons').slideToggle();", :class => 'icon icon-add') if User.current.allowed_to?(:manage_files, @course) %>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<div id="file_buttons" class="nhidden">
|
|
|
|
<%= link_to(l(:label_upload_files), 'javascript:void(0);', :class => 'icon m5p5 button_submit', :onclick => "$('#relation_file_div').slideUp();$('#upload_file_div').slideToggle('slow');") if User.current.allowed_to?(:manage_files, @course) %>
|
|
|
|
<%= link_to(l(:label_relation_files), 'javascript:void(0);', :onclick => "$('#upload_file_div').slideUp();$('#relation_file_div').slideToggle();", :class => 'icon m5p5 button_submit') if User.current.allowed_to?(:manage_files, @course) %>
|
|
|
|
|
|
|
|
<% if attachmenttypes.any? %>
|
|
|
|
|
|
|
|
<label for="attachment_browse_label"><%= l(:attachment_browse) %></label>
|
|
|
|
<%= select_tag "attachment_browse", content_tag(:option, l(:attachment_all), :value => '0') +options_from_collection_for_select(attachmenttypes, "id", "typeName"),
|
2014-06-09 14:27:31 +08:00
|
|
|
:onchange => "course_attachmenttypes_searchex(this.value)" %>
|
2014-06-09 14:23:31 +08:00
|
|
|
<% end %>
|
|
|
|
<% if sufixtypes.any? %>
|
|
|
|
|
|
|
|
<label for="attach_sufix_browse_label"><%= l(:attachment_sufix_browse) %></label>
|
|
|
|
<%= select_tag "attach_sufix_browse", content_tag(:option, l(:attachment_all), :value => '0') +options_for_select(sufixtypes),
|
2014-06-09 14:27:31 +08:00
|
|
|
:onchange => "course_attachment_contenttypes_searchex(this.value)" %>
|
2014-06-09 14:23:31 +08:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div id="upload_file_div" class="relation_file_div hidden">
|
2014-06-09 14:27:31 +08:00
|
|
|
<%= render :partial => 'course_new', locals: {course: @course} %>
|
2014-06-09 14:23:31 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="relation_file_div" class="relation_file_div hidden">
|
|
|
|
<fieldset>
|
|
|
|
<legend>搜索</legend>
|
|
|
|
<%= form_tag(
|
2014-06-09 17:33:43 +08:00
|
|
|
attachments_autocomplete_path(:format => 'js'),
|
2014-06-09 14:23:31 +08:00
|
|
|
:remote => true,
|
|
|
|
:method => :post) do %>
|
|
|
|
<%= label_tag(:attach_search, "按关键字搜索:") %>
|
|
|
|
<%= text_field_tag(:attach_search) %>
|
|
|
|
<%#= submit_tag("Search") %>
|
|
|
|
<% end -%>
|
2014-07-02 09:11:45 +08:00
|
|
|
<%= form_tag course_attach_relation_path(:format => 'js'),
|
2014-06-09 14:23:31 +08:00
|
|
|
method: :post,
|
|
|
|
remote: true,
|
|
|
|
id: "relation_file_form",
|
|
|
|
:class => 'hidden' do %>
|
|
|
|
<%= hidden_field_tag(:class_name, 'course') %>
|
|
|
|
<%= hidden_field_tag(:class_id, params[:course_id]) %>
|
|
|
|
<div id="relation_file">
|
|
|
|
</div>
|
|
|
|
<div class="kclearfix" style='margin-top: 10px;'>
|
|
|
|
<%= submit_tag(l(:button_add)) -%>
|
|
|
|
</div>
|
|
|
|
<% end -%>
|
|
|
|
</fieldset>
|
|
|
|
<div class="line_under" style="margin:20px 0px;"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<%= javascript_tag "observeSearchfield('attach_search', null, '#{ escape_javascript attachments_autocomplete_path(:course_id => @course.id, :format => 'js') }')" %>
|
|
|
|
|
|
|
|
|
|
|
|
<% delete_allowed = User.current.allowed_to?(:manage_files, @course) %>
|
|
|
|
|
|
|
|
<div id="all_browse_div" class="all_browse_div">
|
2014-06-09 17:33:43 +08:00
|
|
|
<%= render :partial => 'course_show_all_attachment' %>
|
2014-06-09 14:23:31 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<% html_title(l(:label_attachment_plural)) -%>
|