共有 <%= link_to memos.count %> 个贴子
<% if memos.any? %> <% memos.each do |topic| %>
<%= 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%>
<%= link_to h(topic.subject), open_source_project_relative_memo_path(topic.open_source_project, topic) %>
<%= link_to (topic.replies_count), open_source_project_relative_memo_path(topic.open_source_project, topic) %>
回答
<%= link_to (topic.viewed_count_crawl+topic.viewed_count_local), open_source_project_relative_memo_path(topic.open_source_project, topic) %>
浏览
<%#= authoring topic.created_at, topic.author %>
帖子来源:<%= link_to topic.url, topic.url%> <%= no_use_link(topic, User.current) %>
<%= image_tag( "/images/sidebar/tags.png") %> <%= render :partial => 'tags/tag_name', :locals => {:obj => topic,:object_flag => "9",:non_list_all => true }%>
<% end %> <% else %>

<%= l(:label_no_data) %>

<% end %>