mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
e1c6f3aad2
Fix malformed HTML (e.g. unmatched closing tags) as well as other issues
identified as "parse errors" when running:
herb analyze .
https://community.openproject.org/work_packages/70148
178 lines
6.8 KiB
Plaintext
178 lines
6.8 KiB
Plaintext
<%# -- copyright
|
|
OpenProject is an open source project management software.
|
|
Copyright (C) the OpenProject GmbH
|
|
|
|
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 COPYRIGHT and LICENSE files for more details.
|
|
|
|
++# %>
|
|
|
|
<% if @tab == "WorkPackageCustomField" %>
|
|
<%= render(EnterpriseEdition::BannerComponent.new(:custom_field_hierarchies)) %>
|
|
<% end %>
|
|
|
|
<% if @custom_fields_by_type[tab[:name]].blank? %>
|
|
<%= no_results_box(display_action: false) %>
|
|
<% else %>
|
|
<div class="generic-table--container">
|
|
<div class="generic-table--results-container">
|
|
<% if tab[:name] == 'WorkPackageCustomField' %>
|
|
<div class="op-toast -info">
|
|
<div class="op-toast--content">
|
|
<p><%= t("text_custom_field_hint_activate_per_project_and_type") %></p>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<table class="generic-table" data-controller="table-highlighting">
|
|
<colgroup>
|
|
<col>
|
|
<col>
|
|
<% if tab[:name] == 'WorkPackageCustomField' %>
|
|
<col>
|
|
<col>
|
|
<% end %>
|
|
<col>
|
|
<col>
|
|
<col data-highlight="false">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= CustomField.human_attribute_name(:name) %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= CustomField.human_attribute_name(:field_format) %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= CustomField.human_attribute_name(:is_required) %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<% if tab[:name] == 'WorkPackageCustomField' %>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= CustomField.human_attribute_name(:is_for_all) %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= t(:label_used_in_projects) %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= t("custom_fields.contained_in_type") %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<% end %>
|
|
<% unless tab[:name] == 'WorkPackageCustomField' %>
|
|
<th>
|
|
<div class="generic-table--sort-header-outer">
|
|
<div class="generic-table--sort-header">
|
|
<span>
|
|
<%= t(:button_sort) %>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</th>
|
|
<% end %>
|
|
<th><div class="generic-table--empty-header"></div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%>
|
|
<tr>
|
|
<td><%= link_to h(custom_field.name), edit_custom_field_path(custom_field), lang: custom_field.name_locale %></td>
|
|
<td><%= label_for_custom_field_format(custom_field.field_format) %></td>
|
|
<td><%= checked_image custom_field.is_required? %></td>
|
|
<% if tab[:name] == 'WorkPackageCustomField' %>
|
|
<td><%= checked_image custom_field.is_for_all? %></td>
|
|
<td>
|
|
<% if custom_field.projects.count == 0 && !custom_field.is_for_all? %>
|
|
<span class="icon-context icon-warning">
|
|
<%= t(:label_x_projects, count: custom_field.projects.count) %>
|
|
</span>
|
|
<% elsif !custom_field.is_for_all? %>
|
|
<%= t(:label_x_projects, count: custom_field.projects.count) %>
|
|
<% end %>
|
|
</td>
|
|
<td>
|
|
<% type_links = custom_field.types.map { |t| link_to(t.name, edit_type_form_configuration_path(t)) } %>
|
|
<% if type_links.empty? %>
|
|
<span class="icon-context icon-warning">
|
|
<%= link_to t(:label_custom_field_add_no_type), types_path %>
|
|
</span>
|
|
<% end %>
|
|
<%= safe_join(type_links, ", ") %>
|
|
</td>
|
|
<% end %>
|
|
<% unless tab[:name] == 'WorkPackageCustomField' %>
|
|
<td><%= reorder_links("custom_field", { action: "update", id: custom_field, back_url: custom_fields_path(tab: tab[:name]) }, method: :put) %></td>
|
|
<% end %>
|
|
<td class="buttons">
|
|
<%= link_to(
|
|
op_icon("icon icon-delete"),
|
|
custom_field_path(custom_field),
|
|
data: {
|
|
turbo_method: :delete,
|
|
turbo_confirm: I18n.t(:text_are_you_sure)
|
|
},
|
|
title: t(:button_delete)
|
|
) %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<% end %>
|