##// END OF EJS Templates
Do not mass create API keys for existing users....
Do not mass create API keys for existing users. They will be created on the fly if needed, just like for new users. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3065:91a493e2c7ca
r3107:edab0f0cbb85
Show More
index.rhtml
40 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
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 />
Jean-Philippe Lang
Per project forums added....
r526 <%= link_to_message board.last_message %>
<% 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| %>
<%= f.link_to 'Atom', :url => {:controller => 'projects', :action => 'activity', :id => @project, :show_messages => 1, :key => User.current.rss_key} %>
<% end %>
Jean-Philippe Lang
Adds atom feed link on boards index....
r1210
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, {:controller => 'projects', :action => 'activity', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %>
<% end %>
Jean-Philippe Lang
Adds HTML titles to forums related views....
r1584
<% html_title l(:label_board_plural) %>