Chris@909: <%= breadcrumb link_to(l(:label_board_plural), {:controller => 'boards', :action => 'index', :project_id => @project}) %> Chris@909: Chris@909:
Chris@909: <%= link_to_if_authorized l(:label_message_new), Chris@909: {:controller => 'messages', :action => 'new', :board_id => @board}, Chris@909: :class => 'icon icon-add', Chris@909: :onclick => 'Element.show("add-message"); Form.Element.focus("message_subject"); return false;' %> Chris@909: <%= watcher_tag(@board, User.current) %> Chris@909:
Chris@909: Chris@909: Chris@909: Chris@909:

<%=h @board.name %>

Chris@909:

<%=h @board.description %>

Chris@909: Chris@909: <% if @topics.any? %> Chris@909: Chris@909: Chris@909: Chris@909: Chris@909: <%= sort_header_tag('created_on', :caption => l(:field_created_on)) %> Chris@909: <%= sort_header_tag('replies', :caption => l(:label_reply_plural)) %> Chris@909: <%= sort_header_tag('updated_on', :caption => l(:label_message_last)) %> Chris@909: Chris@909: Chris@909: <% @topics.each do |topic| %> Chris@909: Chris@909: Chris@909: Chris@909: Chris@909: Chris@909: Chris@909: Chris@909: <% end %> Chris@909: Chris@909:
<%= l(:field_subject) %><%= l(:field_author) %>
<%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %><%= link_to_user(topic.author) %><%= format_time(topic.created_on) %><%= topic.replies_count %> Chris@909: <% if topic.last_reply %> Chris@909: <%= authoring topic.last_reply.created_on, topic.last_reply.author %>
Chris@909: <%= link_to_message topic.last_reply %> Chris@909: <% end %> Chris@909:
Chris@909:

<%= pagination_links_full @topic_pages, @topic_count %>

Chris@909: <% else %> Chris@909:

<%= l(:label_no_data) %>

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