|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
<% if course %>
|
|
|
|
|
<li id="homework_loggedas_li" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="<%=course.name%>" onmouseover="homeworkSlipMenuOver(<%= course.id%>);" onmouseout="homeworkSlipMenuOut(<%= course.id%>);">
|
|
|
|
|
<%= link_to course.name, "http://" + Setting.host_course + course_path(course.id) %>
|
|
|
|
|
<%= link_to course.name, course_path(course.id, host: Setting.host_course) %>
|
|
|
|
|
<ul class="homework_sub_menu" id="homework_loggedas_ul_<%= course.id%>" style="top:<%= course_index * 28.1%>px;">
|
|
|
|
|
<% course.homework_for_courses.map(&:bid).each do |bid| %>
|
|
|
|
|
<li style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" title="<%=bid.name%>">
|
|
|
|
|
<%= link_to bid.name, "http://" + Setting.host_course + course_for_bid_path(bid), :target => "_blank" %>
|
|
|
|
|
<%= link_to bid.name, course_for_bid_path(bid, host: Setting.host_course), :target => "_blank" %>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|