OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/custom_fields/_form.html.erb

134 lines
5.5 KiB

<%#-- 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.
++#%>
<%= error_messages_for 'custom_field' %>
<section class="form--section" id="custom_field_form">
<div class="form--field -required" id="custom_field_name_attributes">
<%= f.text_field :name,
:multi_locale => true %>
</div>
<div class="form--field">
<%= f.select :field_format,
custom_field_formats_for_select(@custom_field),
{},
disabled: !@custom_field.new_record? %>
</div>
<div class="form--grouping" id="custom_field_length">
<div class="form--grouping-label">
<%= l(:label_min_max_length) %> <br>
<small>(<%= l(:text_min_max_length_info ) %>)</small>
</div>
<div class="form--grouping-row">
<div class="form--field">
<%= f.text_field :min_length %>
</div>
<div class="form--field">
<%= f.text_field :max_length %>
</div>
</div>
</div>
<div class="form--field">
<%= f.text_field :regexp,
:size => 50 %>
<span class="form--field-instructions">
<%=l(:text_regexp_info)%>
</span>
</div>
<div class="form--field" id="custom_field_possible_values_attributes">
<% if @custom_field.new_record? || @custom_field.field_format == 'list' %>
<% possible_values = @custom_field.translations.inject({}) do |h, t|
h[t.locale] = t.possible_values.to_a.join("\n")
h
end %>
<%= f.text_area :possible_values,
:value => possible_values,
:rows => 15,
:multi_locale => true %><br>
<% end %>
<span class="form--field-instructions"><%= l(:text_custom_field_possible_values_info) %></span>
</div>
<div id="custom_field_default_value_attributes">
<div class="form--field" id="default_value_text_multi">
<% unless @custom_field.field_format == 'bool' %>
<%= f.text_field(:default_value, :multi_locale => true) %>
<% end %>
</div>
<div class="form--field" id="default_value_text_single">
<% if @custom_field.new_record? || ['date', 'float', 'int'].include?(@custom_field.field_format) %>
<%= f.text_field(:default_value, :single_locale => true) %>
<% end %>
</div>
<div class="form--field" style="display:none" id="default_value_bool">
<% if @custom_field.new_record? || @custom_field.field_format == 'bool' %>
<%= f.check_box(:default_value, :single_locale => true) %>
<% end %>
</div>
</div>
<%= call_hook(:view_custom_fields_form_upper_box, :custom_field => @custom_field, :form => f) %>
</section>
<section class="form--section">
<% case @custom_field.class.name
when "WorkPackageCustomField" %>
<fieldset class="form--fieldset">
<legend class="form--fieldset-legend"><%=l(:label_type_plural)%></legend>
<% for type in @types %>
<%= check_box_tag "custom_field[type_ids][]", type.id, (@custom_field.types.include? type),
:id => "custom_field_type_ids_#{type.id}",
class: 'form--checkbox' %>
<%= content_tag :label, (type.is_standard) ? l(:label_custom_field_default_type) : h(type),
:class => "no-css",
:for => "custom_field_type_ids_#{type.id}" %>
<% end %>
<%= hidden_field_tag "custom_field[type_ids][]", '' %>
</fieldset>
&nbsp;
<div class="form--field"><%= f.check_box :is_required %></div>
<div class="form--field"><%= f.check_box :is_for_all %></div>
<div class="form--field"><%= f.check_box :is_filter %></div>
<div class="form--field" id="searchable_container"><%= f.check_box :searchable %></div>
<% when "UserCustomField" %>
<div class="form--field"><%= f.check_box :is_required %></div>
<div class="form--field"><%= f.check_box :visible %></div>
<div class="form--field"><%= f.check_box :editable %></div>
<% when "ProjectCustomField" %>
<div class="form--field"><%= f.check_box :is_required %></div>
<div class="form--field"><%= f.check_box :visible %></div>
<div class="form--field" id="searchable_container"><%= f.check_box :searchable %></div>
<% when "TimeEntryCustomField" %>
<div class="form--field"><%= f.check_box :is_required %></div>
<% else %>
<div class="form--field"><%= f.check_box :is_required %></div>
<% end %>
<%= call_hook(:"view_custom_fields_form_#{@custom_field.type.to_s.underscore}", :custom_field => @custom_field, :form => f) %>
</section>