80 lines
2.7 KiB
Plaintext
80 lines
2.7 KiB
Plaintext
<!--added by fq -->
|
|
<!--display the board-->
|
|
|
|
<div class="borad-topic-count" style="margin-top:10px">
|
|
<span>共有 <%= link_to @topic_count %> 个贴子 </span>
|
|
</div>
|
|
<div style="padding-top: 10px">
|
|
<% if memos.any? %>
|
|
<% memos.each do |topic| %>
|
|
<table class="content-text-list">
|
|
<tr>
|
|
<td colspan="2" valign="top" width="50" ><%= link_to image_tag(url_to_avatar(topic.author), :class => "avatar"), user_path(topic.author) if topic.author%>
|
|
<%= image_tag('../images/avatars/User/0', :class => "avatar") unless topic.author%> </td>
|
|
<td>
|
|
<table width="630px" border="0">
|
|
<tr>
|
|
<td valign="top" width="500px" class="<%= topic.sticky ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
|
|
<% if topic.url.nil? || topic.url == '' %>
|
|
<%= link_to h(topic.subject), open_source_project_relative_memo_path(open_source_project, topic) %>
|
|
<% else %>
|
|
<%= link_to h(topic.subject), topic.url, :target => '_blank' %>
|
|
<% end %></td>
|
|
<td align="right" rowspan="3">
|
|
<table class="borad-count">
|
|
<tr>
|
|
<td align="center" class="borad-count-digit"><%= link_to (topic.replies_count), topic.url, :target => '_blank' %></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">回帖</td>
|
|
</tr>
|
|
</table></td>
|
|
|
|
<td align="right" rowspan="3">
|
|
<table class="borad-count">
|
|
<tr>
|
|
<td align="center" class="borad-count-digit"><%= link_to (topic.viewed_count_crawl+topic.viewed_count_local), topic.url, :target => '_blank' %></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">关注</td>
|
|
</tr>
|
|
</table></td>
|
|
|
|
<td align="right" rowspan="3">
|
|
<table class="borad-count">
|
|
<tr>
|
|
<td align="center" class="borad-count-digit"><%= link_to (topic.viewed_count_crawl+topic.viewed_count_local), topic.url, :target => '_blank' %></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">浏览</td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
<tr>
|
|
<td><span class="font_description"><%= topic.short_content(70) %> </span></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left"><span class="font_lighter"><%= user_url_and_time topic.username, topic.userhomeurl, topic.created_at %>
|
|
<br />
|
|
</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left">帖子来源:<span class="font_lighter" style="color: #068d9c"><%=link_to topic.topic_resource, topic.url, :target => '_blank' %>
|
|
</span></td>
|
|
<td colspan="3" align="center"><%= no_use_link(topic, User.current) %> </td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
|
<div class="pagination">
|
|
<%= pagination_links_full @topic_pages, @topic_count %>
|
|
</div>
|
|
<% else %>
|
|
<p class="nodata">
|
|
<%= l(:label_no_data) %>
|
|
</p>
|
|
<% end %>
|
|
</div> |