2006-07-29 13:32:58 +04:00
|
|
|
<h2><%=l(:label_project_plural)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
<table width="100%" cellspacing="1" cellpadding="2" class="listTableContent">
|
|
|
|
<tr class="ListHead">
|
2006-07-29 13:32:58 +04:00
|
|
|
<%= sort_header_tag('name', :caption => l(:label_project)) %>
|
|
|
|
<th><%=l(:field_description)%></th>
|
|
|
|
<th><%=l(:field_is_public)%></th>
|
|
|
|
<th><%=l(:label_subproject_plural)%></th>
|
|
|
|
<%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<th></th>
|
|
|
|
</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, :controller => 'projects', :action => 'settings', :id => project %>
|
2006-07-29 13:32:58 +04:00
|
|
|
<td><%= project.description %>
|
2006-07-09 20:30:01 +04:00
|
|
|
<td align="center"><%= image_tag 'true' if project.is_public? %>
|
|
|
|
<td align="center"><%= project.projects_count %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<td align="center"><%= format_date(project.created_on) %>
|
|
|
|
<td align="center">
|
|
|
|
<%= start_form_tag({:controller => 'projects', :action => 'destroy', :id => project}) %>
|
2006-07-29 13:32:58 +04:00
|
|
|
<%= submit_tag l(:button_delete), :class => "button-small" %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
|
2006-07-09 20:30:01 +04:00
|
|
|
<p><%= pagination_links_full @project_pages %>
|
|
|
|
[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]</p>
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<p><%= link_to ('» ' + l(:label_project_new)), :controller => 'projects', :action => 'add' %></p>
|