75 lines
2.4 KiB
Plaintext
75 lines
2.4 KiB
Plaintext
<h3>
|
|
<%=l(:label_notification_list)%>
|
|
</h3>
|
|
|
|
<div class="autoscroll">
|
|
<table class="list" style="width: 100%;table-layout: fixed">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 30px;">
|
|
序号
|
|
</th>
|
|
<th style="width: 30px;">
|
|
课程id
|
|
</th>
|
|
<th style="width: 120px;">
|
|
课程名称
|
|
</th>
|
|
<th style="width: 50px;">
|
|
主讲老师
|
|
</th>
|
|
<th style="width: 50px;">
|
|
作者
|
|
</th>
|
|
<th style="width: 70px;">
|
|
时间
|
|
</th>
|
|
<th style="width: 120px;">
|
|
标题
|
|
</th>
|
|
<th style="width: 30px;">
|
|
回复数
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @count=0%>
|
|
<% for news in @news -%>
|
|
<% @count=@count + 1 %>
|
|
<tr class="<%= cycle("odd", "even") %>">
|
|
<td style="text-align: center;">
|
|
<%= @count %>
|
|
</td>
|
|
<td align="center">
|
|
<%=news.course_id %>
|
|
</td>
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title="<%=news.course.name %>">
|
|
<%=link_to(news.course.name, course_path(news.course)) %>
|
|
</td>
|
|
<td align="center" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title="<%=news.course.try(:teacher).try(:realname) %>">
|
|
<%=link_to(news.course.try(:teacher).try(:realname), user_path(news.course.teacher)) %>
|
|
</td>
|
|
<td align="center" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title='<% if news.try(:author).try(:realname) == ' '%><%= news.try(:author)%><% else %><%=news.try(:author).try(:realname) %><% end %>'>
|
|
<% if news.try(:author).try(:realname) == ' '%>
|
|
<%= link_to(news.try(:author), user_path(news.author)) %>
|
|
<% else %>
|
|
<%= link_to(news.try(:author).try(:realname), user_path(news.author)) %>
|
|
<% end %>
|
|
</td>
|
|
<td class="center">
|
|
<%= format_date(news.created_on) %>
|
|
</td>
|
|
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title='<%=news.title %>'>
|
|
<%= link_to(news.title, news_path(news)) %>
|
|
</td>
|
|
<td class="center">
|
|
<%=news.comments_count %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<% html_title(l(:label_notification_list)) -%>
|