67 lines
2.4 KiB
Plaintext
67 lines
2.4 KiB
Plaintext
<!-- added by fq -->
|
|
<!--display the board-->
|
|
<div class="borad-topic-count">
|
|
共有 <%= link_to memos.count %> 个贴子
|
|
</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' : '' %>"><%= link_to h(topic.subject), open_source_project_relative_memo_path(topic.open_source_project, topic) %></td>
|
|
<td align="right" rowspan="3">
|
|
<table class="borad-count">
|
|
<tr>
|
|
<td align="center" class="borad-count-digit"><%= link_to (topic.replies_count), open_source_project_relative_memo_path(topic.open_source_project, topic) %></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), open_source_project_relative_memo_path(topic.open_source_project, 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 %>
|
|
<br />
|
|
</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left" colspan="2" ><span class="font_lighter">帖子来源:<%= link_to topic.url, topic.url%> </span></td>
|
|
<td align="left"><%= no_use_link(topic, User.current) %> </td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left" colspan="2"> <%= image_tag( "/images/sidebar/tags.png") %>
|
|
<%= render :partial => 'tags/tag_name', :locals => {:obj => topic,:object_flag => "9",:non_list_all => true }%> </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> |