<% if @topics.any? %>
<% @topics.each do |topic| %>
<%= link_to image_tag(url_to_avatar(topic.author), :class => "avatar"), user_path(topic.author) %> |
<%= link_to h(topic.subject), board_message_path(@board, topic) %> |
<%=link_to (topic.replies_count), board_message_path(@board, topic) %> |
回答 |
|
<%= authoring topic.created_on, topic.author %>
|
|