comparison .svn/pristine/e3/e38f15d25eddac622827eb4fb140d82f4ed1a927.svn-base @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents
children
comparison
equal deleted inserted replaced
908:c6c2cbd0afee 909:cbb26bc654de
1 <h2><%= l(:label_board_plural) %></h2>
2
3 <table class="list boards">
4 <thead><tr>
5 <th><%= l(:label_board) %></th>
6 <th><%= l(:label_topic_plural) %></th>
7 <th><%= l(:label_message_plural) %></th>
8 <th><%= l(:label_message_last) %></th>
9 </tr></thead>
10 <tbody>
11 <% for board in @boards %>
12 <tr class="<%= cycle 'odd', 'even' %>">
13 <td>
14 <%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
15 <%=h board.description %>
16 </td>
17 <td align="center"><%= board.topics_count %></td>
18 <td align="center"><%= board.messages_count %></td>
19 <td>
20 <small>
21 <% if board.last_message %>
22 <%= authoring board.last_message.created_on, board.last_message.author %><br />
23 <%= link_to_message board.last_message %>
24 <% end %>
25 </small>
26 </td>
27 </tr>
28 <% end %>
29 </tbody>
30 </table>
31
32 <% other_formats_links do |f| %>
33 <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_messages => 1, :key => User.current.rss_key} %>
34 <% end %>
35
36 <% content_for :header_tags do %>
37 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %>
38 <% end %>
39
40 <% html_title l(:label_board_plural) %>