203 lines
8.8 KiB
Plaintext
203 lines
8.8 KiB
Plaintext
<!--modified by huang-->
|
|
<script type="text/javascript">
|
|
function ShowCountDown(year,month,day,divname)
|
|
{
|
|
var now = new Date();
|
|
var endDate = new Date(year, month-1, day);
|
|
var leftTime=endDate.getTime()-now.getTime();
|
|
var leftsecond = parseInt(leftTime/1000);
|
|
var day1=Math.floor(leftsecond/(60*60*24));
|
|
var hour=Math.floor((leftsecond-day1*24*60*60)/3600);
|
|
var minute=Math.floor((leftsecond-day1*24*60*60-hour*3600)/60);
|
|
var second=Math.floor(leftsecond-day1*24*60*60-hour*3600-minute*60);
|
|
$("#"+divname).html("<span style='color: #acaeb1;'>作业提交还剩 :</span> <span style='color: red;'>"
|
|
+day1+" </span><span style='color: #acaeb1;'>天</span><span style='color: red;'> "
|
|
+hour+" </span><span style='color: #acaeb1;'>时</span><span style='color: red;'> "
|
|
+minute+" </span><span style='color: #acaeb1;'>分</span><span style='color: red;'> "
|
|
+second+" </span><span style='color: #acaeb1;'>秒</span>");
|
|
}
|
|
</script>
|
|
<style>
|
|
.span_wping{}
|
|
.span_wping a{
|
|
margin-top: 18px;
|
|
margin-bottom: 3px;
|
|
width: 43px;
|
|
height: 23px;
|
|
background: #15bccf;
|
|
color: #fff;
|
|
text-align: center;
|
|
padding-top: 3px;
|
|
padding-left: 3px;
|
|
}
|
|
.span_wping a:hover{ background-color:#03a1b3;}
|
|
</style>
|
|
|
|
<% if bids.blank? %>
|
|
<%#= l(:label_uncommit_homework) %>
|
|
暂无作业!
|
|
<% else %>
|
|
<% bids.each do |bid|%>
|
|
<table class="content-text-list">
|
|
<tr>
|
|
<td colspan="2" valign="top" width="50" >
|
|
<%= link_to(image_tag(url_to_avatar(bid.author), :class => 'avatar'), user_path(bid.author), :class => "avatar") %>
|
|
</td>
|
|
<td>
|
|
<table width="580px" border="0">
|
|
<tr>
|
|
<td colspan="2" valign="top">
|
|
<strong>
|
|
<%= link_to(bid.author.lastname+bid.author.firstname, user_path(bid.author)) %>
|
|
</strong>
|
|
<span class="font_lighter">
|
|
<%= l(:label_user_create_project_homework) %>
|
|
</span>
|
|
<span>
|
|
<%= link_to(bid.name, course_for_bid_path(bid), :class => 'bid_path') %>
|
|
</span>
|
|
<span style="float: right">
|
|
<% if User.current.logged? && is_cur_course_student(@course) %>
|
|
<% cur_user_homework = cur_user_homework_for_bid(bid) %>
|
|
<% if cur_user_homework!= nil && cur_user_homework.empty? %>
|
|
<% if bid.comment_status == 0 || bid.comment_status == 2%>
|
|
<span class="span_wping">
|
|
<%= link_to l(:label_commit_homework),new_exercise_book_path(bid) %>
|
|
</span>
|
|
<% else %>
|
|
<span title="匿评阶段不可提交作业!" class="span_wping">
|
|
<a style="width:80px; margin:20px 0 0 350px;background:#8e8e8e;">提交作业</a>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<span style="color: green; float: right">
|
|
<%= l(:lable_has_commit_homework)%>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|
|
<% if (User.current.admin?||User.current.id==bid.author_id) %>
|
|
<% if bid.open_anonymous_evaluation == 1%>
|
|
<span id="<%=bid.id %>_anonymous_comment" class="span_wping">
|
|
<% case bid.comment_status %>
|
|
<% when 0 %>
|
|
<%= link_to '启动匿评', alert_anonymous_comment_bid_path(bid), id: "#{bid.id}_start_anonymous_comment", remote: true, disable_with: '加载中...' %>
|
|
<% when 1 %>
|
|
<%= link_to '关闭匿评', alert_anonymous_comment_bid_path(bid), id: "#{bid.id}_stop_anonymous_comment", remote: true %>
|
|
<% when 2 %>
|
|
匿评结束
|
|
<% end %>
|
|
</span>
|
|
<%end%>
|
|
<span class="span_wping">
|
|
<%= link_to(
|
|
l(:button_edit),
|
|
{:action => 'edit', :controller=>'bids', :course_id =>@course.id, :bid_id => bid.id}
|
|
) %>
|
|
</span>
|
|
<%#= link_to(
|
|
l(:button_delete),
|
|
{:action => 'homework_destroy', :controller=>'bids', :course_id => bid.id},
|
|
:method => :post,
|
|
:data => {:confirm => l(:text_are_you_sure)},
|
|
:class => 'icon icon-del'
|
|
) %>
|
|
<% end %>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<span class="font_lighter">
|
|
<% bidding_project = bid.biding_projects.all
|
|
temp = []
|
|
bidding_project.each do |pro|
|
|
if pro.project && pro.project.project_status
|
|
temp << pro
|
|
end
|
|
temp
|
|
end
|
|
%>
|
|
<% if bid.homework_type == 1%>
|
|
<%= l(:label_x_homework_project, :count => bid.homeworks.count) %>
|
|
(
|
|
<strong>
|
|
<%= link_to bid.homeworks.count, course_for_bid_path(bid.id) %>
|
|
</strong>)
|
|
<% else %>
|
|
<%= l(:label_x_homework_project, :count => temp.count) %>
|
|
(
|
|
<strong>
|
|
<%= link_to temp.count, course_for_bid_path(bid.id) %>
|
|
</strong>)
|
|
<% end %>
|
|
</span>
|
|
<span class="font_lighter">
|
|
<%= l(:label_students_responses) %>
|
|
(
|
|
<strong>
|
|
<%= bid.commit.nil? ? 0 : bid.commit %>
|
|
</strong>
|
|
)
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<% if bid.reward_type.nil? or bid.reward_type == 1 %>
|
|
<strong>
|
|
<%= l(:label_bids_reward_method) %>
|
|
<span style="color: #ed8924;font-family: 14px; font-family: '微软雅黑'">
|
|
<%= l(:label_call_bonus) %>
|
|
|
|
<%= l(:label_RMB_sign) %>
|
|
<%= bid.budget%>
|
|
</span>
|
|
</strong>
|
|
<% elsif bid.reward_type == 2 %>
|
|
<strong>
|
|
<%= l(:label_bids_reward_method) %>
|
|
<span style="color: #15bccf;font-family: 14px; font-family:' 微软雅黑'">
|
|
<%= bid.budget%>
|
|
</span>
|
|
</strong>
|
|
<% end %> <!-- <td style="color: rgb(255, 0, 0);"><strong><%#= l(:label_price) %><%#= l(:label_RMB_sign) %><%#= bid.budget%></strong></td> -->
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" width="580px" >
|
|
<span class="font_description">
|
|
<%= textilizable bid, :description %>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="text-align: left">
|
|
<span class="font_lighter">
|
|
<%= l(:label_create_time) %>
|
|
:
|
|
<%=format_time bid.created_on %>
|
|
</span>
|
|
<span style="float: right">
|
|
<% if betweentime(bid.deadline) < 0 %>
|
|
<span style="color: red; float: right">
|
|
<%= l(:label_commit_limit)%>
|
|
</span>
|
|
<% else %>
|
|
<script type="text/javascript">
|
|
window.setInterval(function(){ShowCountDown(<%= bid.deadline.year%>,<%= bid.deadline.month%>,<%= bid.deadline.day + 1%>,"show_deadtime_span_<%= bid.id%>");},1000)
|
|
</script>
|
|
<span id="show_deadtime_span_<%= bid.id%>" style="float: right">
|
|
</span>
|
|
<% end %>
|
|
</span>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
</table>
|
|
<% end %>
|
|
<% end %>
|
|
<div class="pagination">
|
|
<%= pagination_links_full bid_pages %>
|
|
</div> |