diff --git a/app/views/admin/projects.rhtml b/app/views/admin/projects.rhtml
index 1acef091..56aef92e 100644
--- a/app/views/admin/projects.rhtml
+++ b/app/views/admin/projects.rhtml
@@ -21,9 +21,7 @@
<% for project in @projects %>
@@ -32,17 +30,11 @@
<%= textilizable project.short_description, :project => project %> |
<%= image_tag 'true.png' if project.is_public? %> |
<%= format_date(project.created_on) %> |
-
-
+
<%= link_to(l(:button_archive), { :controller => 'projects', :action => 'archive', :id => project }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-lock') if project.active? %>
<%= link_to(l(:button_unarchive), { :controller => 'projects', :action => 'unarchive', :id => project }, :method => :post, :class => 'icon icon-unlock') if !project.active? && (project.parent.nil? || project.parent.active?) %>
-
- |
-
<%= link_to(l(:button_copy), { :controller => 'projects', :action => 'copy', :id => project }, :class => 'icon icon-copy') %>
- |
-
- <%= link_to(l(:button_delete), { :controller => 'projects', :action => 'destroy', :id => project }, :class => 'icon icon-del') %>
+ <%= link_to(l(:button_delete), { :controller => 'projects', :action => 'destroy', :id => project }, :class => 'icon icon-del') %>
|
<% end %>
|