%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2017 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-2017 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. ++#%> <% if (@custom_fields_by_type[tab[:name]] || []).any? %>
<%= CustomField.human_attribute_name(:name) %>
|
<%= CustomField.human_attribute_name(:field_format) %>
|
<%= CustomField.human_attribute_name(:is_required) %>
|
<% if tab[:name] == 'WorkPackageCustomField' %>
<%= CustomField.human_attribute_name(:is_for_all) %>
|
<%=l(:label_used_by)%>
|
<% end %>
<%=l(:button_sort)%>
|
|
---|---|---|---|---|---|---|
<%= link_to h(custom_field.name), edit_custom_field_path(custom_field), lang: custom_field.name_locale %> | <%= label_for_custom_field_format(custom_field.field_format) %> | <%= checked_image custom_field.is_required? %> | <% if tab[:name] == 'WorkPackageCustomField' %><%= checked_image custom_field.is_for_all? %> | <%= l(:label_x_projects, count: custom_field.projects.count) if custom_field.is_a? WorkPackageCustomField and !custom_field.is_for_all? %> | <% end %><%= reorder_links('custom_field', { action: 'update', id: custom_field, back_url: custom_fields_path }, method: :put) %> | <%= delete_link custom_field_path(custom_field) %> |