<%#-- copyright OpenProject is an open source project management software. Copyright (C) 2012-2024 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. ++#%> <%= toolbar title: t(:label_general) %> <%= styled_form_tag(admin_settings_update_general_path, method: :patch) do %>
<%= setting_text_field :app_title, size: 30, container_class: '-middle' %>
<%= setting_text_field :per_page_options, size: 20, container_class: '-slim' %> <%= t(:text_comma_separated) %>
<%= t(:text_notice_too_many_values_are_inperformant) %>
<%= setting_number_field :activity_days_default, size: 6, unit: t(:label_day_plural), container_class: '-xslim' %>
<%= setting_text_field :host_name, size: 60, container_class: '-middle' %> <%= t(:label_example) %>: <%= @guessed_host %>
<%= setting_check_box :cache_formatted_text %>
<%= setting_check_box :feeds_enabled, size: 6 %>
<%= setting_text_field :feeds_limit, size: 6, container_class: '-xslim' %>
<%= setting_text_field :work_packages_projects_export_limit, size: 6, container_class: '-xslim' %>
<%= setting_text_field :file_max_size_displayed, size: 6, unit: t(:"number.human.storage_units.units.kb"), container_class: '-xslim' %>
<%= setting_text_field :diff_max_lines_displayed, size: 6, container_class: '-xslim' %>
<% if OpenProject::Configuration.security_badge_displayed? %>
<%= setting_check_box :security_badge_displayed %> <%= t(:text_notice_security_badge_displayed_html, information_panel_label: t(:label_information), more_info_url: ::OpenProject::Static::Links[:security_badge_documentation][:href], information_panel_path: info_admin_index_path) %>
<% end %> <%= call_hook(:view_settings_general_form) %>
<%= t(:setting_welcome_text) %>
<%= setting_text_field :welcome_title, size: 30, container_class: '-wide' %>
<%= setting_text_area :welcome_text, cols: 60, rows: 5, class: 'wiki-edit', id: 'settings_welcome_text', with_text_formatting: true, container_class: '-xxwide' %>
<%= setting_check_box :welcome_on_homescreen %>
<%= styled_button_tag t(:button_save), class: '-primary -with-icon icon-checkmark' %> <% end %>