2006-12-16 15:15:31 +03:00
|
|
|
<div class="contextual">
|
2010-09-07 19:00:27 +04:00
|
|
|
<%= link_to l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add' %>
|
2006-12-16 15:15:31 +03:00
|
|
|
</div>
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<h2><%=l(:label_project_plural)%></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2012-04-25 21:17:49 +04:00
|
|
|
<%= form_tag({}, :method => :get) do %>
|
2007-05-27 21:42:04 +04:00
|
|
|
<fieldset><legend><%= l(:label_filter_plural) %></legend>
|
2011-10-29 05:16:11 +04:00
|
|
|
<label for='status'><%= l(:field_status) %> :</label>
|
2007-05-27 21:42:04 +04:00
|
|
|
<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
|
2011-10-29 05:16:11 +04:00
|
|
|
<label for='name'><%= l(:label_project) %>:</label>
|
2008-10-24 21:12:39 +04:00
|
|
|
<%= text_field_tag 'name', params[:name], :size => 30 %>
|
|
|
|
<%= submit_tag l(:button_apply), :class => "small", :name => nil %>
|
2011-03-16 21:23:51 +03:00
|
|
|
<%= link_to l(:button_clear), {:controller => 'admin', :action => 'projects'}, :class => 'icon icon-reload' %>
|
2007-05-27 21:42:04 +04:00
|
|
|
</fieldset>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
2010-02-06 17:05:13 +03:00
|
|
|
<div class="autoscroll">
|
2006-12-24 19:35:25 +03:00
|
|
|
<table class="list">
|
|
|
|
<thead><tr>
|
2011-09-18 03:07:53 +04:00
|
|
|
<th><%=l(:label_project)%></th>
|
|
|
|
<th><%=l(:field_is_public)%></th>
|
|
|
|
<th><%=l(:field_created_on)%></th>
|
2009-05-10 15:36:12 +04:00
|
|
|
<th></th>
|
2006-12-24 19:35:25 +03:00
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
2010-03-17 23:06:52 +03:00
|
|
|
<% project_tree(@projects) do |project, level| %>
|
2010-09-11 03:07:10 +04:00
|
|
|
<tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
|
2012-06-25 21:49:35 +04:00
|
|
|
<td class="name"><span><%= link_to_project(project, {:action => (project.active? ? 'settings' : 'show')}, :title => project.short_description) %></span></td>
|
2011-09-18 03:07:53 +04:00
|
|
|
<td align="center"><%= checked_image project.is_public? %></td>
|
|
|
|
<td align="center"><%= format_date(project.created_on) %></td>
|
2009-05-10 15:36:12 +04:00
|
|
|
<td class="buttons">
|
2012-06-25 21:49:35 +04:00
|
|
|
<%= link_to(l(:button_archive), { :controller => 'projects', :action => 'archive', :id => project, :status => params[:status] }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-lock') unless project.archived? %>
|
|
|
|
<%= link_to(l(:button_unarchive), { :controller => 'projects', :action => 'unarchive', :id => project, :status => params[:status] }, :method => :post, :class => 'icon icon-unlock') if project.archived? && (project.parent.nil? || !project.parent.archived?) %>
|
2009-05-04 01:25:37 +04:00
|
|
|
<%= link_to(l(:button_copy), { :controller => 'projects', :action => 'copy', :id => project }, :class => 'icon icon-copy') %>
|
2011-12-10 13:32:41 +04:00
|
|
|
<%= link_to(l(:button_delete), project_path(project), :method => :delete, :class => 'icon icon-del') %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</td>
|
2006-06-28 22:11:03 +04:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
2006-12-24 19:35:25 +03:00
|
|
|
</tbody>
|
2006-06-28 22:11:03 +04:00
|
|
|
</table>
|
2010-02-06 17:05:13 +03:00
|
|
|
</div>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_project_plural)) -%>
|