##// END OF EJS Templates
Remove the limitation on characters that can be used in custom_field, issue_status, role, tracker, user names (#5152)....
Remove the limitation on characters that can be used in custom_field, issue_status, role, tracker, user names (#5152). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4599 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3933:b925325ddbd5
r4479:44ffc5a3365f
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| %>
Eric Davis
Refactor: extract ProjectsController#activity to a new Activities controller....
r3933 <%= 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) %>