##// END OF EJS Templates
updated documentation...
updated documentation git-svn-id: http://redmine.rubyforge.org/svn/trunk@253 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r147:776d5ce554cd
r250:1cc6dd871bc6
Show More
list.rhtml
20 lines | 724 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_public_projects)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= sort_header_tag('name', :caption => l(:label_project)) %>
<th><%=l(:field_description)%></th>
<%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
v0.2.0...
r5 <% for project in @projects %>
<tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
XHTML compliance improvements...
r147 <td><%= link_to project.name, :action => 'show', :id => project %></td>
<td><%=h project.description %></td>
<td align="center"><%= format_date(project.created_on) %></td>
Jean-Philippe Lang
Initial commit...
r2 </tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
<%= pagination_links_full @project_pages %>
[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]