<%= l(:label_board_plural) %>

<% if !User.current.logged?%>
<%= l(:label_user_login_course_board) %> <%= link_to l(:label_user_login_new), signin_path %>
<% end %>

<%= l(:label_totle) %> <%= @topic_count %> <%= l(:label_course_momes_count) %>

<%= link_to l(:label_message_new), new_board_message_path(@board), :class => 'problem_new_btn fl c_dorange' if User.current.logged? %>
<% if @topics.any? %> <% @topics.each do |topic| %>
<%= link_to image_tag(url_to_avatar(topic.author), :width=>"32",:height=>"32"), user_path(topic.author),:class => 'problem_pic talk_pic fl' %>
<%= link_to h(topic.subject.truncate(40,ommision:'...')), board_message_path(@board, topic),title: topic.subject.to_s,:class => "problem_tit fl fb c_dblue" %> <% if topic.sticky? %> 置顶 <% end %>

由<%= link_to topic.author,user_path(topic.author),:class => "problem_name" %>添加于<%= format_time(topic.created_on) %>

<%=link_to (l(:label_reply) + topic.replies_count.to_s), board_message_path(@board, topic),:class => "talk_btn fr c_white" %>
<% end %> <% else %>

<%= l(:label_no_data) %>

<% end %> <%# other_formats_links do |f| %> <%#= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> <%# end %> <% html_title @board.name %> <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{@course}: #{@board}") %> <% end %>