2013-11-08 20:54:45 +08:00
|
|
|
<div class="content_frame">
|
2014-06-04 16:45:20 +08:00
|
|
|
<ul class="user_course_sort">
|
2014-05-20 14:52:30 +08:00
|
|
|
<% for membership in memberships %>
|
|
|
|
<li>
|
|
|
|
<table width="660" border="0" align="center" style="border-bottom: 1px dashed rgb(204, 204, 204); margin-bottom: 10px;font-size:14px;">
|
|
|
|
<tr>
|
2014-06-04 16:45:20 +08:00
|
|
|
<td colspan="2" valign="top" width="50"><%= image_tag(url_to_avatar(membership.course), :class => 'avatar') %></td>
|
2014-05-20 14:52:30 +08:00
|
|
|
<td>
|
|
|
|
<table width="580" border="0">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" valign="top">
|
2014-06-04 16:45:20 +08:00
|
|
|
<span><%= link_to_course(membership.course) %></span>
|
2014-05-20 14:52:30 +08:00
|
|
|
<span style="float: right">
|
2014-06-04 16:45:20 +08:00
|
|
|
<%= render :partial => 'courses/set_course_time', :locals => {:course => membership.course} %>
|
2014-05-20 14:52:30 +08:00
|
|
|
<% if User.current == @user %>
|
|
|
|
<% (membership.roles).each do |role| %>
|
|
|
|
<% unless (role == Role.find(9) || role == Role.find(3)) %>
|
2014-06-04 16:45:20 +08:00
|
|
|
<%= join_in_course(membership.course, User.current) %>
|
2014-05-20 14:52:30 +08:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<% end %>
|
2014-06-04 16:45:20 +08:00
|
|
|
<%= l(:label_x_base_courses_member, :count => membership.course.members.count) %>
|
|
|
|
(<%= "#{membership.course.members.count}" %>)
|
2014-05-20 14:52:30 +08:00
|
|
|
<%= l(:label_homework) %>
|
2014-06-20 10:32:51 +08:00
|
|
|
(<span class=""><%= link_to (membership.course.homeworks.count), {:controller => 'courses', :action => 'homework', :id => membership.course.id} %></span>)
|
2014-05-20 14:52:30 +08:00
|
|
|
|
2014-06-20 10:32:51 +08:00
|
|
|
<%= l(:label_course_news) %>
|
|
|
|
(<span style="color: #ed8924"><%= link_to (membership.course.news.count), {:controller => 'news', :action => 'index', :course_id => membership.course.id} %></span>)
|
2014-05-20 14:52:30 +08:00
|
|
|
</span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" width="580">
|
|
|
|
<p class="font_description">
|
2014-07-10 16:57:04 +08:00
|
|
|
<%= membership.course.short_description %>
|
2014-05-20 14:52:30 +08:00
|
|
|
</p></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
|
2014-06-04 16:45:20 +08:00
|
|
|
<% @course = Course.find_by_extra(membership.course.extra) %>
|
2014-05-20 14:52:30 +08:00
|
|
|
<% unless (@course.nil? || @course.teacher.nil? || @course.teacher.name.nil?) %>
|
|
|
|
<span class="font-lighter" style="float: left"><%= l(:label_main_teacher) %>
|
2014-05-22 19:58:13 +08:00
|
|
|
: <%= link_to(@course.teacher.realname, user_path(@course.teacher)) %></span>
|
2014-05-20 14:52:30 +08:00
|
|
|
<span style="float: right; padding-left: 8px"><%= l(:label_course_term) %>
|
|
|
|
: <%= @course.time %><%= @course.term %></span>
|
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<%= call_hook :view_account_left_bottom, :user => @user %>
|