%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2015 the OpenProject Foundation (OPF) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See doc/COPYRIGHT.rdoc for more details. ++#%> <% html_title(l(:label_administration), l(:label_project_plural)) -%> <%= toolbar title: l(:label_project_plural) do %>
<%= l(:label_projects_storage_information, count: Project.count, storage: number_to_human_size(Project.total_projects_size, precision: 2)) %>
<% if @projects.any? %><%= link_to project, settings_project_path(project), title: project.short_description %> | <%= checked_image project.is_public? %> | <%= number_to_human_size(project.required_disk_space, precision: 2) if project.required_disk_space.to_i > 0 %> | <%= format_date(project.created_on) %> | <%= link_to('', archive_project_path(project, status: params[:status]), data: { confirm: l(:text_are_you_sure) }, method: :put, title: l(:button_archive), class: 'icon icon-locked') if project.active? %> <%= link_to('', unarchive_project_path(project, status: params[:status]), method: :put, title: l(:button_unarchive), class: 'icon icon-unlocked') if !project.active? && (project.parent.nil? || project.parent.active?) %> <%= link_to('', copy_from_project_path(project, :admin), title: l(:button_copy), class: 'icon icon-copy') %> <%= link_to('', confirm_destroy_project_path(project), title: l(:button_delete), class: 'icon icon-delete') %> |