list.rhtml
22 lines
| 907 B
| text/html+ruby
|
RhtmlLexer
|
r12 | <h2><%=l(:label_public_projects)%></h2> | |
|
r2 | ||
|
r105 | <table class="list"> | |
<thead><tr> | |||
|
r401 | <%= sort_header_tag("#{Project.table_name}.name", :caption => l(:label_project)) %> | |
|
r330 | <th><%=l(:field_description)%></th> | |
|
r401 | <th><%=l(:field_parent)%></th> | |
<%= sort_header_tag("#{Project.table_name}.created_on", :caption => l(:field_created_on)) %> | |||
|
r105 | </tr></thead> | |
<tbody> | |||
|
r5 | <% for project in @projects %> | |
|
r330 | <tr class="<%= cycle("odd", "even") %>"> | |
<td><%= link_to project.name, :action => 'show', :id => project %></td> | |||
<td><%=h project.description %></td> | |||
|
r401 | <td><%= link_to(project.parent.name, :action => 'show', :id => project.parent) unless project.parent.nil? %></td> | |
|
r330 | <td align="center"><%= format_date(project.created_on) %></td> | |
|
r2 | </tr> | |
<% end %> | |||
|
r105 | </tbody> | |
|
r330 | </table> | |
|
r2 | <%= pagination_links_full @project_pages %> | |
[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ] |