##// END OF EJS Templates
Makes Private column available on the issue list (#8577)....
Makes Private column available on the issue list (#8577). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9919 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7200:422bc131e37c
r9736:1d7c0eb7c02d
Show More
index.html.erb
40 lines | 1.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Per project forums added....
r526 <h2><%= l(:label_board_plural) %></h2>
Jean-Philippe Lang
Adds atom feed link on boards index....
r1210 <table class="list boards">
Jean-Philippe Lang
Per project forums added....
r526 <thead><tr>
<th><%= l(:label_board) %></th>
<th><%= l(:label_topic_plural) %></th>
<th><%= l(:label_message_plural) %></th>
<th><%= l(:label_message_last) %></th>
</tr></thead>
<tbody>
<% for board in @boards %>
<tr class="<%= cycle 'odd', 'even' %>">
<td>
Jean-Philippe Lang
Removes large icons....
r3065 <%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
Jean-Philippe Lang
Per project forums added....
r526 <%=h board.description %>
</td>
<td align="center"><%= board.topics_count %></td>
<td align="center"><%= board.messages_count %></td>
<td>
<small>
<% if board.last_message %>
Jean-Philippe Lang
Forums enhancements:...
r913 <%= authoring board.last_message.created_on, board.last_message.author %><br />
Toshi MARUYAMA
remove trailing white-spaces from app/views/boards/index.html.erb...
r7139 <%= link_to_message board.last_message %>
Jean-Philippe Lang
Per project forums added....
r526 <% end %>
</small>
</td>
</tr>
<% end %>
</tbody>
</table>
Jean-Philippe Lang
Adds atom feed link on boards index....
r1210
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/boards/index.html.erb...
r7200 <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_messages => 1, :key => User.current.rss_key} %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Adds atom feed link on boards index....
r1210
<% content_for :header_tags do %>
Eric Davis
Refactor: extract ProjectsController#activity to a new Activities controller....
r3933 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %>
Jean-Philippe Lang
Adds atom feed link on boards index....
r1210 <% end %>
Jean-Philippe Lang
Adds HTML titles to forums related views....
r1584
<% html_title l(:label_board_plural) %>