2015-09-28 14:09:27 +08:00
|
|
|
|
<% is_teacher = User.current.allowed_to?(:as_teacher,activity.course) %>
|
2015-10-22 09:20:19 +08:00
|
|
|
|
<div class="resources mt10" id="user_activity_<%= user_activity_id%>">
|
2015-08-31 14:52:56 +08:00
|
|
|
|
<div class="homepagePostBrief">
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<div class="homepagePostPortrait">
|
2015-08-31 14:52:56 +08:00
|
|
|
|
<%= link_to image_tag(url_to_avatar(activity.user), :width => "50", :height => "50"), user_path(activity.user_id), :alt => "用户头像" %>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostDes">
|
2015-10-16 10:54:22 +08:00
|
|
|
|
<div class="homepagePostTo break_word mt-4">
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<% if activity.try(:user).try(:realname) == ' ' %>
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.try(:user), user_path(activity.user_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<% else %>
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.try(:user).try(:realname), user_path(activity.user_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<% end %> TO <!--+"(课程名称)" -->
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.course.name.to_s+" | 课程作业", homework_common_index_path(:course => activity.course.id, :host=> Setting.host_course), :class => "newsBlue ml15"%>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
2015-11-04 15:24:24 +08:00
|
|
|
|
<div class="homepagePostTitle hidden m_w505 fl"> <!--+"(作业名称)"-->
|
2015-09-18 14:31:19 +08:00
|
|
|
|
<%= link_to activity.name.to_s, student_work_index_path(:homework => activity.id,:host=> Setting.host_course), :class => "postGrey"%>
|
2015-08-24 17:45:09 +08:00
|
|
|
|
</div>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% if activity.homework_detail_manual%>
|
|
|
|
|
<% if activity.homework_detail_manual.comment_status == 1%>
|
|
|
|
|
<% if activity.anonymous_comment == 0%>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="grey_homework_btn_cir ml5">未开启匿评</span>
|
2015-11-04 15:24:24 +08:00
|
|
|
|
<% else %>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="grey_homework_btn_cir ml5">匿评已禁用</span>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% end %>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="green_homework_btn_cir ml5">作品提交中</span>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% elsif activity.homework_detail_manual.comment_status == 2%>
|
|
|
|
|
<% if activity.anonymous_comment == 0%>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="green_homework_btn_cir ml5">匿评中</span>
|
2015-11-04 15:24:24 +08:00
|
|
|
|
<% else %>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="grey_homework_btn_cir ml5">匿评已禁用</span>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% end %>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="green_homework_btn_cir ml5" title="目前教师和教辅正在评阅">教师评阅中</span>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% elsif activity.homework_detail_manual.comment_status == 3%>
|
|
|
|
|
<% if activity.anonymous_comment == 0%>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="grey_homework_btn_cir ml5">匿评已结束</span>
|
2015-11-04 15:24:24 +08:00
|
|
|
|
<% else %>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="grey_homework_btn_cir ml5">匿评已禁用</span>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% end %>
|
2015-11-05 09:37:56 +08:00
|
|
|
|
<span class="green_homework_btn_cir ml5" title="目前教师和教辅正在评阅">教师评阅中</span>
|
2015-11-04 11:16:11 +08:00
|
|
|
|
<% end%>
|
2015-09-19 10:33:38 +08:00
|
|
|
|
<% end%>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<div class="homepagePostSubmitContainer">
|
2015-10-16 15:23:34 +08:00
|
|
|
|
<div class="homepagePostSubmit">
|
|
|
|
|
<% is_teacher = User.current.allowed_to?(:as_teacher,activity.course) %>
|
|
|
|
|
<%= user_for_homework_common activity,is_teacher %>
|
|
|
|
|
</div>
|
2015-09-19 10:33:38 +08:00
|
|
|
|
|
|
|
|
|
<% if activity.homework_type == 2 && is_teacher%>
|
|
|
|
|
<div class="homepagePostSubmit">
|
|
|
|
|
<%= link_to "模拟答题", new_user_commit_homework_users_path(homework_id: activity.id, is_test: true), class: 'c_blue test-program-btn', title: '教师可以通过模拟答题设置作业的标准答案' %>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if activity.homework_type == 2%>
|
|
|
|
|
<div class="homepagePostDeadline mr15">
|
|
|
|
|
语言:
|
2015-09-19 16:29:29 +08:00
|
|
|
|
<%= activity.language_name%>
|
2015-09-19 10:33:38 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2015-11-04 15:24:24 +08:00
|
|
|
|
<div class="homepagePostDeadline">截止时间:<%= activity.end_time.to_s %> 23:59</div>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
2015-10-26 15:26:05 +08:00
|
|
|
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
2015-10-22 17:42:02 +08:00
|
|
|
|
<div id="intro_content_<%= user_activity_id%>">
|
|
|
|
|
<%= activity.description.html_safe %>
|
|
|
|
|
</div>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
</div>
|
2015-10-22 17:42:02 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
|
|
|
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
|
|
|
|
<div class="cl"></div>
|
2015-10-26 15:54:08 +08:00
|
|
|
|
<div>
|
|
|
|
|
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => activity.attachments} %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
2015-10-28 10:17:45 +08:00
|
|
|
|
<% if is_teacher%>
|
2015-11-04 10:54:09 +08:00
|
|
|
|
<% comment_status = activity.homework_detail_manual.comment_status %>
|
2015-10-28 10:17:45 +08:00
|
|
|
|
<div class="homepagePostSetting">
|
2015-09-28 14:09:27 +08:00
|
|
|
|
<ul>
|
|
|
|
|
<li class="homepagePostSettingIcon">
|
|
|
|
|
<ul class="homepagePostSettiongText">
|
|
|
|
|
<li>
|
2015-11-04 10:54:09 +08:00
|
|
|
|
<%= link_to l(:button_edit),edit_homework_common_path(activity,:is_in_course => -1,:course_activity=>course_activity), :class => "postOptionLink"%>
|
2015-09-28 14:09:27 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2015-11-04 10:54:09 +08:00
|
|
|
|
<%= link_to(l(:label_bid_respond_delete), homework_common_path(activity,:is_in_course => -1,:course_activity=>course_activity),:method => 'delete', :confirm => l(:text_are_you_sure), :class => "postOptionLink") %>
|
2015-09-28 14:09:27 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2015-10-28 10:17:45 +08:00
|
|
|
|
<%= link_to("评分设置", score_rule_set_homework_common_path(activity,:user_activity_id => user_activity_id, :is_in_course => 0),:class => "postOptionLink", :remote => true) %>
|
2015-09-28 14:09:27 +08:00
|
|
|
|
</li>
|
2015-11-04 10:54:09 +08:00
|
|
|
|
<% if activity.anonymous_comment == 0 %>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to("匿评设置", start_evaluation_set_homework_common_path(activity),:class => "postOptionLink", :remote => true) if activity.homework_detail_manual.comment_status == 1%>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2015-11-06 14:57:39 +08:00
|
|
|
|
<%= homework_anonymous_comment activity,-1,user_activity_id,course_activity %>
|
2015-11-04 10:54:09 +08:00
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if activity.anonymous_comment == 0 && (comment_status == 0 || comment_status == 1)%>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to("禁用匿评", alert_forbidden_anonymous_comment_homework_common_path(activity,:user_activity_id => user_activity_id,:course_activity=>course_activity),:class => "postOptionLink", :remote => true)%>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
2015-09-28 14:09:27 +08:00
|
|
|
|
</ul>
|
|
|
|
|
</li>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</ul>
|
2015-09-28 14:09:27 +08:00
|
|
|
|
</div>
|
2015-10-28 10:17:45 +08:00
|
|
|
|
<% end%>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
2015-10-22 09:20:19 +08:00
|
|
|
|
|
|
|
|
|
<% count=activity.journals_for_messages.count %>
|
|
|
|
|
<div class="homepagePostReply">
|
|
|
|
|
<div class="topBorder" style="display: <%= count>0 ? 'none': '' %>"></div>
|
|
|
|
|
<div class="homepagePostReplyBanner" style="display: <%= count>0 ? '': 'none' %>">
|
|
|
|
|
<div class="homepagePostReplyBannerCount">
|
|
|
|
|
回复(<%= count %>)
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyBannerTime"></div>
|
|
|
|
|
<%if count>3 %>
|
|
|
|
|
<div class="homepagePostReplyBannerMore">
|
|
|
|
|
<a id="reply_btn_<%=user_activity_id%>" onclick="expand_reply('#reply_div_<%= user_activity_id %> li','#reply_btn_<%=user_activity_id%>')" data-count="<%= count %>" data-init="0" class=" replyGrey" href="javascript:void(0)" value="show_help" >
|
|
|
|
|
展开更多
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<% replies_all_i = 0 %>
|
|
|
|
|
<% if count > 0 %>
|
|
|
|
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
|
|
|
|
<ul>
|
|
|
|
|
<% activity.journals_for_messages.reorder("created_on desc").each do |comment| %>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(function(){
|
|
|
|
|
showNormalImage('reply_content_<%= comment.id %>');
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<% replies_all_i = replies_all_i + 1 %>
|
|
|
|
|
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i > 3 ? 'none' : '' %>">
|
|
|
|
|
<div class="homepagePostReplyPortrait">
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(comment.user), :width => "33", :height => "33", :class =>"mt8"), user_path(comment.user_id), :alt => "用户头像" %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyDes">
|
|
|
|
|
<div class="homepagePostReplyPublisher">
|
|
|
|
|
<% if comment.try(:user).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to comment.try(:user), user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to comment.try(:user).try(:realname), user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= format_time(comment.created_on) %>
|
|
|
|
|
</div>
|
2015-10-26 15:26:05 +08:00
|
|
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
2015-10-22 09:20:19 +08:00
|
|
|
|
<%= comment.notes.html_safe %></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
|
|
|
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), :alt => "用户头像" %></div>
|
|
|
|
|
<div class="homepagePostReplyInputContainer mb10">
|
|
|
|
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
|
|
|
|
<%= form_for('new_form',:url => {:controller => 'words', :action => 'leave_homework_message', :id => activity.id},:method => "post", :remote => true) do |f|%>
|
|
|
|
|
<%= hidden_field_tag 'user_activity_id',params[:user_activity_id],:value =>user_activity_id %>
|
2015-11-06 11:26:37 +08:00
|
|
|
|
<%= hidden_field_tag 'course_activity',params[:course_activity],:value =>course_activity %>
|
2015-10-22 09:20:19 +08:00
|
|
|
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="homework_message"></textarea>
|
|
|
|
|
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left;padding-top:3px; margin-left: 5px;"></div>
|
|
|
|
|
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<p nhname='contentmsg_<%= user_activity_id%>'></p>
|
|
|
|
|
<% end%>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|