socialforge/app/views/users/_my_joinedcourse.html.erb

33 lines
1019 B
Plaintext
Raw Normal View History

2013-11-08 20:54:45 +08:00
<div class="content-title-top">
<% if @memberships.empty? %>
2013-10-07 22:50:20 +08:00
<% if @user != User.current %>
<p class="font_description">
<%= l(:label_project_course_un) %>
</p>
<% else %>
<p class="font_description">
<%= l(:label_project_cousre_studentun) %><%= link_to"#{l(:label_course_join_student)}",{:controller=>'projects',:action=>'course', :course => 1}, :class => 'icon icon-add' %>
2013-10-09 16:14:11 +08:00
</p>
2013-10-07 22:50:20 +08:00
<% end %>
<% else %>
<p>
<span><%=l(:label_course_doing)%>(<%=@memberships_doing.count%>)</span>
<%= link_to"#{l(:label_course_view_student)}",{:controller=>'projects',:action=>'course', :course => 1}, :class => 'icon icon-add' %>
</p>
<div>
<%= render :partial => 'course_form', :locals => {:memberships => @memberships_doing}%>
</div>
<div style="clear:both;"></div>
<p>
<span><%=l(:label_course_done)%>(<%=@memberships_done.count%>)</span>
</p>
<div class="courses_history" >
<%= render :partial => 'course_form', :locals => {:memberships => @memberships_done}%>
</div>
<% end %>
2013-10-07 22:50:20 +08:00
</div>