bootstrap fine tuning.
This commit is contained in:
parent
4259f63fbf
commit
0998438e67
|
@ -26,7 +26,7 @@ class TestController < ApplicationController
|
|||
end
|
||||
|
||||
def courselist
|
||||
@courses = Project.course_entities
|
||||
@courses = paginateHelper Course.includes(:homeworks).all, 10
|
||||
end
|
||||
|
||||
def ziping files_path
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
<div class="container">
|
||||
<%= render_flash_messages %>
|
||||
<%= yield %>
|
||||
<%= render :partial => 'layouts/bootstrap_base_footer' %>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -29,6 +30,5 @@
|
|||
|
||||
<div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
|
||||
<div id="ajax-modal" style="display:none;"></div>
|
||||
<%= render :partial => 'layouts/bootstrap_base_footer' %>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,14 +1,5 @@
|
|||
<div class="alert alert-success">
|
||||
<strong>Well done!</strong> You successfully read this important alert message.
|
||||
</div>
|
||||
<div class="alert alert-info">
|
||||
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
|
||||
</div>
|
||||
<div class="alert alert-warning">
|
||||
<strong>Warning!</strong> Best check yo self, you're not looking too good.
|
||||
</div>
|
||||
<div class="alert alert-danger">
|
||||
<strong>Oh snap!</strong> Change a few things up and try submitting again.
|
||||
<strong>Warning!</strong> you can stop.
|
||||
</div>
|
||||
|
||||
<div class="page-header">
|
||||
|
@ -29,14 +20,15 @@
|
|||
<div class="homeworks panel-heading">
|
||||
<div class="panel-title">
|
||||
<%= link_to homework.name, respond_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/>
|
||||
<%#= 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|%>
|
||||
<%= link_to_attachment attach, author: true, :download => true %> (<%=attach.author%>)
|
||||
<%= attach.filename %>
|
||||
<%#= link_to_attachment attach, author: true, :download => true %> (<%=attach.author%>)
|
||||
<br/>
|
||||
<% homeworks_attach_path << attach.storage_path %>
|
||||
<% end %>
|
||||
|
@ -44,7 +36,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<%# 所有作业的文件列表%>
|
||||
<!-- (<%=homeworks_attach_path.count%>):<%= homeworks_attach_path.to_json %> -->
|
||||
<!-- (<%#=homeworks_attach_path.count%>):<%#= homeworks_attach_path.to_json %> -->
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
|
@ -52,3 +44,4 @@
|
|||
<hr/>
|
||||
<% end %>
|
||||
</div>
|
||||
<div class="pagination"><%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %></div>
|
Loading…
Reference in New Issue