2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_public_projects)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
<table width="100%" cellspacing="1" cellpadding="2" class="listTableContent">
|
|
|
|
<tr class="ListHead">
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= sort_header_tag('name', :caption => l(:label_project)) %>
|
|
|
|
<th><%=l(:field_description)%></th>
|
|
|
|
<%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
|
2006-06-28 22:11:03 +04:00
|
|
|
</tr>
|
|
|
|
|
2006-07-09 20:30:01 +04:00
|
|
|
<% for project in @projects %>
|
|
|
|
<tr class="<%= cycle("odd", "even") %>">
|
2006-06-28 22:11:03 +04:00
|
|
|
<td><%= link_to project.name, :action => 'show', :id => project %>
|
2006-07-29 13:32:58 +04:00
|
|
|
<td><%= project.description %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<td align="center"><%= format_date(project.created_on) %>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<%= pagination_links_full @project_pages %>
|
|
|
|
[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]
|