<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. See doc/COPYRIGHT.rdoc for more details. ++#%>
<%= link_to_if_authorized l(:label_message_new), {:controller => '/messages', :action => 'new', :board_id => @board}, :class => 'icon icon-add', :onclick => 'Element.show("add-message"); Form.Element.focus("message_subject"); return false;' %> <%= watcher_link(@board, User.current) %>

<%=h @board.name %>

<%=h @board.description %>

<% if @topics.any? %> <%= sort_header_tag('created_on', :caption => Message.human_attribute_name(:created_on)) %> <%= sort_header_tag('replies', :caption => l(:label_reply_plural)) %> <%= sort_header_tag('updated_on', :caption => l(:label_message_last)) %> <% @topics.each do |topic| %> <% end %>
<%= Message.human_attribute_name(:subject) %> <%= Message.human_attribute_name(:author) %>
<%= image_tag('locked.png', :alt => l(:label_board_locked)) if topic.locked? %><%= image_tag 'bullet_go.png', :alt => l(:label_board_sticky) if topic.sticky? %><%= 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 %> <% if topic.last_reply %> <%= authoring topic.last_reply.created_on, topic.last_reply.author %>
<%= link_to_message topic.last_reply %> <% end %>
<%= pagination_links_full @topics %> <% else %>

<%= l(:label_no_data) %>

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