]> source.dussan.org Git - redmine.git/commitdiff
Cleaning projects administration list.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 May 2009 11:36:12 +0000 (11:36 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 May 2009 11:36:12 +0000 (11:36 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2731 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/admin/projects.rhtml

index 1acef091fb0363dbad223cf2fe5670a6d91a5136..56aef92edf58dbfcecc777ceb5d1a30520f71d9e 100644 (file)
@@ -21,9 +21,7 @@
        <th><%=l(:field_description)%></th>
        <th><%=l(:field_is_public)%></th>
        <th><%=l(:field_created_on)%></th>
-    <th></th>
-    <th></th>
-    <th></th>
+  <th></th>
   </tr></thead>
   <tbody>
 <% for project in @projects %>
        <td><%= textilizable project.short_description, :project => project %></td>
        <td align="center"><%= image_tag 'true.png' if project.is_public? %></td>
        <td align="center"><%= format_date(project.created_on) %></td>
-  <td align="center" style="width:10%">
-    <small>
+  <td class="buttons">
     <%= 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?) %>
-    </small>
-  </td>
-  <td align="center" style="width:10%">
     <%= link_to(l(:button_copy), { :controller => 'projects', :action => 'copy', :id => project }, :class => 'icon icon-copy') %>
-  </td>
-  <td align="center" style="width:10%">
-    <small><%= link_to(l(:button_delete), { :controller => 'projects', :action => 'destroy', :id => project }, :class => 'icon icon-del') %></small>
+    <%= link_to(l(:button_delete), { :controller => 'projects', :action => 'destroy', :id => project }, :class => 'icon icon-del') %>
   </td>
   </tr>
 <% end %>