调整作业显示样式
This commit is contained in:
parent
12087f40c7
commit
c4b2c47dc7
|
@ -38,7 +38,7 @@
|
||||||
<a><%= link_to request.host()+"/courses", :controller => 'courses', :action => 'index' %></a></td>
|
<a><%= link_to request.host()+"/courses", :controller => 'courses', :action => 'index' %></a></td>
|
||||||
<td><p class="top-content-list-homework"><%= link_to "主页", home_path %>
|
<td><p class="top-content-list-homework"><%= link_to "主页", home_path %>
|
||||||
> <%= link_to l(:label_course_practice), :controller => 'courses', :action => 'index' %> >
|
> <%= link_to l(:label_course_practice), :controller => 'courses', :action => 'index' %> >
|
||||||
<span><%= link_to(@bid.courses.first.name.to_s, homework_course_path(@bid.courses.first)) if @bid.courses.first %></span>
|
<span><%= link_to(course.name.to_s, homework_course_path(course)) if course %></span>
|
||||||
>
|
>
|
||||||
<%= link_to(@bid.name, respond_path(@bid)) %></p></td>
|
<%= link_to(@bid.name, respond_path(@bid)) %></p></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
<td style="vertical-align: top;font-size: 16px;text-align: center;">
|
<td style="vertical-align: top;font-size: 16px;text-align: center;">
|
||||||
<span style=" word-wrap: break-word; word-break: break-all">
|
<span style=" word-wrap: break-word; word-break: break-all">
|
||||||
<strong>
|
<strong>
|
||||||
<%= link_to @bid.courses.first.name.to_s, homework_course_path(@bid.courses.first) if @bid.courses.first %>
|
<%= link_to course.name.to_s, homework_course_path(course) if course %>
|
||||||
</strong>
|
</strong>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
@ -211,9 +211,9 @@
|
||||||
<li>
|
<li>
|
||||||
<%= link_to l(:label_question_student), {:controller => 'bids', :action => 'show'}, :class => link_class(:respond) %>
|
<%= link_to l(:label_question_student), {:controller => 'bids', :action => 'show'}, :class => link_class(:respond) %>
|
||||||
</li>
|
</li>
|
||||||
<% if User.current.member_of_course? @bid.courses.first %>
|
<% if User.current.member_of_course? course %>
|
||||||
<li>
|
<li>
|
||||||
<% if User.current.logged? && @bid.courses.first && (!Member.where('user_id = ? and course_id = ?', User.current.id, @bid.courses.first.id).first.nil? && (Member.where('user_id = ? and course_id = ?', User.current.id, @bid.courses.first.id).first.roles&Role.where('id = ? or id = ? or id =?', 5, 10, 7)).size >0) %>
|
<% if User.current.logged? && course && (!Member.where('user_id = ? and course_id = ?', User.current.id, course.id).first.nil? && (Member.where('user_id = ? and course_id = ?', User.current.id, course.id).first.roles&Role.where('id = ? or id = ? or id =?', 5, 10, 7)).size >0) %>
|
||||||
<%= link_to l(:label_homework_commit), {:controller => 'bids', :action => 'show_course'}, :class => link_class(:course) %>
|
<%= link_to l(:label_homework_commit), {:controller => 'bids', :action => 'show_course'}, :class => link_class(:course) %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to l(:label_homework_info), {:controller => 'bids', :action => 'show_course'}, :class => link_class(:course) %>
|
<%= link_to l(:label_homework_info), {:controller => 'bids', :action => 'show_course'}, :class => link_class(:course) %>
|
||||||
|
@ -221,9 +221,9 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<% end %>
|
||||||
<!-- <li><%= link_to l(:label_homework_statistics), {:controller => 'bids', :action => 'homework_statistics'}, :class => link_class(:homework_statistics) %></li> -->
|
<!-- <li><%#= link_to l(:label_homework_statistics), {:controller => 'bids', :action => 'homework_statistics'}, :class => link_class(:homework_statistics) %></li> -->
|
||||||
<!-- <li><%= link_to l(:label_homework_respond), {:controller => 'bids', :action => 'homework_respond'}, :class => link_class(:homework_respond) %></li>
|
<!-- <li><%#= link_to l(:label_homework_respond), {:controller => 'bids', :action => 'homework_respond'}, :class => link_class(:homework_respond) %></li>-->
|
||||||
--></ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
|
|
Loading…
Reference in New Issue