76 lines
3.9 KiB
Plaintext
76 lines
3.9 KiB
Plaintext
<% is_teacher = User.current.allowed_to?(:as_teacher,activity.course) %>
|
|
<div class="resources mt10">
|
|
<div class="homepagePostBrief">
|
|
<div class="homepagePostPortrait">
|
|
<%= link_to image_tag(url_to_avatar(activity.user), :width => "50", :height => "50"), user_path(activity.user_id), :alt => "用户头像" %>
|
|
</div>
|
|
<div class="homepagePostDes">
|
|
<div class="homepagePostTo break_word">
|
|
<% if activity.try(:user).try(:realname) == ' ' %>
|
|
<%= link_to activity.try(:user), user_path(activity.user_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
|
<% else %>
|
|
<%= link_to activity.try(:user).try(:realname), user_path(activity.user_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
|
<% end %> TO <!--+"(课程名称)" -->
|
|
<%= link_to activity.course.name.to_s+" | 课程作业", homework_common_index_path(:course => activity.course.id, :host=> Setting.host_course), :class => "newsBlue ml15"%>
|
|
</div>
|
|
<div class="homepagePostTitle hidden m_w530 fl"> <!--+"(作业名称)"-->
|
|
<%= link_to activity.name.to_s, student_work_index_path(:homework => activity.id,:host=> Setting.host_course), :class => "postGrey"%>
|
|
</div>
|
|
<% if activity.homework_detail_manual.comment_status == 1%>
|
|
<span class="grey_btn_cir ml10">未开启匿评</span>
|
|
<% elsif activity.homework_detail_manual.comment_status == 2%>
|
|
<span class="green_btn_cir ml10">匿评中</span>
|
|
<% elsif activity.homework_detail_manual.comment_status == 3%>
|
|
<span class="grey_btn_cir ml10">匿评已结束</span>
|
|
<% end%>
|
|
<div class="homepagePostSubmitContainer">
|
|
<% if User.current.member_of_course?(activity.course) %>
|
|
<div class="homepagePostSubmit">
|
|
<% is_teacher = User.current.allowed_to?(:as_teacher,activity.course) %>
|
|
<%= user_for_homework_common activity,is_teacher %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% 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">
|
|
语言:
|
|
<%= activity.language_name%>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="homepagePostDeadline">截止时间:<%= activity.end_time.to_s %></div>
|
|
</div>
|
|
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id%>">
|
|
<%= activity.description.html_safe %>
|
|
</div>
|
|
<%# if is_teacher%>
|
|
<!--<div class="homepagePostSetting">
|
|
<ul>
|
|
<li class="homepagePostSettingIcon">
|
|
<ul class="homepagePostSettiongText">
|
|
<li>
|
|
<%#= link_to l(:button_edit),edit_homework_common_path(activity,:is_in_course => 0), :class => "postOptionLink"%>
|
|
</li>
|
|
<li>
|
|
<%#= link_to(l(:label_bid_respond_delete), homework_common_path(activity,:is_in_course => 0),:method => 'delete', :confirm => l(:text_are_you_sure), :class => "postOptionLink") %>
|
|
</li>
|
|
<li>
|
|
<%#= link_to("匿评设置", start_evaluation_set_homework_common_path(activity),:class => "postOptionLink", :remote => true) if activity.homework_detail_manual.comment_status == 1%>
|
|
</li>
|
|
<li>
|
|
<%#= homework_anonymous_comment activity %>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<%# end%>-->
|
|
</div>
|
|
<div class="cl"></div>
|
|
</div>
|
|
</div> |