课程实践平台课程名称与学校调换
This commit is contained in:
parent
97707ea44a
commit
5e600380c7
|
@ -6,11 +6,8 @@
|
||||||
<!-- 上左下右 -->
|
<!-- 上左下右 -->
|
||||||
<div class='desc_item'>
|
<div class='desc_item'>
|
||||||
<span class=''>
|
<span class=''>
|
||||||
<% if (course.school == nil) %>
|
<%= link_to(course.name.truncate(30, omission: '...')+":", course_path(course.id), :class => "d-g-blue d-p-project-name", :title => "#{course.name}") %>
|
||||||
|
|
||||||
<% else %>
|
|
||||||
<%= link_to course.school.name.try(:gsub, /(.+)$/, '\1:'), options={:action => 'course', :school_id => course.school.id}, html_options={:method => 'get'} %>
|
|
||||||
<% end %>
|
|
||||||
</span>
|
</span>
|
||||||
<span class='font_bolder'>
|
<span class='font_bolder'>
|
||||||
<%= link_to(course.try(:teacher).try(:realname), user_path(course.teacher)) %>
|
<%= link_to(course.try(:teacher).try(:realname), user_path(course.teacher)) %>
|
||||||
|
@ -19,7 +16,11 @@
|
||||||
</div>
|
</div>
|
||||||
<div class='desc_item text_nowrap'>
|
<div class='desc_item text_nowrap'>
|
||||||
[<%= get_course_term course %>]
|
[<%= get_course_term course %>]
|
||||||
<%= link_to(course.name.truncate(30, omission: '...'), course_path(course.id), :class => "d-g-blue d-p-project-name", :title => "#{course.name}") %>
|
<% if (course.school == nil) %>
|
||||||
|
|
||||||
|
<% else %>
|
||||||
|
<%= link_to course.school.name.try(:gsub, /(.+)$/, '\1'), options={:action => 'course', :school_id => course.school.id}, html_options={:method => 'get'} %>
|
||||||
|
<% end %>
|
||||||
(<%= course.members.count %>人)
|
(<%= course.members.count %>人)
|
||||||
<%# files_count = course.attachments.count.to_s %>
|
<%# files_count = course.attachments.count.to_s %>
|
||||||
(<%= link_to "#{course.attachments.count.to_s}份", course_files_path(course) %>资料)
|
(<%= link_to "#{course.attachments.count.to_s}份", course_files_path(course) %>资料)
|
||||||
|
|
Loading…
Reference in New Issue