47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
<div class="alert alert-danger">
|
|
<strong>Warning!</strong> you can stop.
|
|
</div>
|
|
|
|
<div class="page-header">
|
|
<div class="jumbotron">
|
|
<h1>课程作业列表</h1>
|
|
<p class="lead">测试页面提供</p>
|
|
</div>
|
|
<% @courses.each do |course| %>
|
|
<div class="courses_list row">
|
|
<div class="col-md-12">
|
|
<div class="page-header">
|
|
<h3> <%= course.name %> </h3>
|
|
</div>
|
|
|
|
<% course.homeworks.each do |homework| %>
|
|
<% homeworks_attach_path = [] %>
|
|
<div class="homeworks panel panel-default ">
|
|
<div class="homeworks panel-heading">
|
|
<div class="panel-title">
|
|
<%= link_to homework.name, course_for_bid_path(homework) %>(<%=homework.homeworks.count %>)<%#Bid%>
|
|
<%#= link_to "打包下载", zipdown_assort_path(obj_class: homework.class, obj_id: homework.id), :class => "btn btn-primary btn-sm" %><br/>
|
|
</div>
|
|
</div>
|
|
<div class="attach_item panel-body ">
|
|
<div class="col-md-offset-1">
|
|
<% homework.homeworks.each do |homeattach|%><%#homework.class == Bid %>
|
|
<% homeattach.attachments.each do |attach|%>
|
|
<%= attach.filename %>
|
|
<%#= link_to_attachment attach, author: true, :download => true %> (<%=attach.author%>)
|
|
<br/>
|
|
<% homeworks_attach_path << attach.storage_path %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<%# 所有作业的文件列表%>
|
|
<!-- (<%#=homeworks_attach_path.count%>):<%#= homeworks_attach_path.to_json %> -->
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
<% end %>
|
|
</div>
|
|
<div class="pagination"><%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %></div> |