2015-05-15 15:09:33 +08:00
|
|
|
<script>$(function(){$("img").removeAttr("alt");});</script>
|
2014-04-28 20:37:12 +08:00
|
|
|
<div class="borad-topic-count">共有 <%=link_to @forum.memos.count %> 个贴子</div>
|
2013-11-23 20:04:26 +08:00
|
|
|
<div style="padding-top: 10px">
|
|
|
|
<% if memos.any? %>
|
|
|
|
<% memos.each do |topic| %>
|
|
|
|
<table class="content-text-list">
|
2015-06-26 17:00:33 +08:00
|
|
|
<tr>
|
|
|
|
<td colspan="2" valign="top" style="width: 50px;">
|
|
|
|
<%= link_to image_tag(url_to_avatar(topic.author), :class => "avatar"), user_path(topic.author) if topic.author%>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<table width="630px" border="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="top" width="500px" class="<%= topic.sticky ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>"><%= link_to h(topic.subject), forum_memo_path(topic.forum, topic) %></td>
|
|
|
|
<td align="right" rowspan="3">
|
|
|
|
<table class="borad-count">
|
|
|
|
<tr>
|
|
|
|
<td align="center" class="borad-count-digit"><%= link_to (topic.replies_count), forum_memo_path(topic.forum, topic) %></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="center">回答</td>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" ><span class="font_description"> </span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="left" colspan="2" ><span class="font_lighter"><%= authoring topic.created_at, topic.author %>
|
|
|
|
<span class="font_description2">
|
|
|
|
<% author = topic.last_reply.try(:author)%>
|
|
|
|
<% if author%>
|
|
|
|
最后回复:<%=link_to_user author %>
|
|
|
|
<% end%>
|
|
|
|
</span>
|
|
|
|
<br />
|
|
|
|
</span></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
2013-11-23 20:04:26 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
2013-11-24 20:02:53 +08:00
|
|
|
<div class="pagination"><%= pagination_links_full @topic_pages, @topic_count %></div>
|
2013-11-23 20:04:26 +08:00
|
|
|
<% else %>
|
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|