kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
74 lines
3.6 KiB
74 lines
3.6 KiB
<%#-- 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.
|
|
|
|
++#%>
|
|
<%= styled_form_tag({action: 'edit'}) do %>
|
|
<section class="form--section">
|
|
<div class="form--field"><%= setting_text_field :app_title, size: 30 %></div>
|
|
<div class="form--field">
|
|
<%= setting_text_field :attachment_max_size, size: 6, unit: l(:"number.human.storage_units.units.kb") %>
|
|
</div>
|
|
<div class="form--field">
|
|
<%= setting_text_field :per_page_options, size: 20 %>
|
|
<span class="form--field-instructions">
|
|
<%= l(:text_comma_separated) %><br/>
|
|
<%= l(:text_notice_too_many_values_are_inperformant) %>
|
|
</span>
|
|
</div>
|
|
<div class="form--field">
|
|
<%= setting_text_field :activity_days_default, size: 6, unit: l(:label_day_plural) %>
|
|
</div>
|
|
<div class="form--field">
|
|
<%= setting_text_field :host_name, size: 60 %>
|
|
<span class="form--field-instructions">
|
|
<%= l(:label_example) %>: <%= @guessed_host %>
|
|
</span>
|
|
</div>
|
|
<div class="form--field"><%= setting_select :protocol, [['HTTP', 'http'], ['HTTPS', 'https']] %></div>
|
|
<div class="form--field"><%= setting_select :text_formatting, Redmine::WikiFormatting.format_names.collect{|name| [name, name.to_s]}, blank: :label_none %></div>
|
|
<div class="form--field"><%= setting_check_box :cache_formatted_text %></div>
|
|
<div class="form--field"><%= setting_select :wiki_compression, [['Gzip', 'gzip']], blank: :label_none %></div>
|
|
<div class="form--field"><%= setting_check_box :feeds_enabled, size: 6 %></div>
|
|
<div class="form--field"><%= setting_text_field :feeds_limit, size: 6 %></div>
|
|
<div class="form--field">
|
|
<%= setting_text_field :file_max_size_displayed, size: 6, unit: l(:"number.human.storage_units.units.kb") %>
|
|
</div>
|
|
<div class="form--field"><%= setting_text_field :diff_max_lines_displayed, size: 6 %></div>
|
|
<%= call_hook(:view_settings_general_form) %>
|
|
<fieldset class="form--fieldset">
|
|
<legend class="form--fieldset-legend"><%= l(:setting_welcome_text) %></legend>
|
|
<div class="form--field"><%= setting_text_field :welcome_title, size: 30 %></div>
|
|
<div class="form--field">
|
|
<%= setting_text_area :welcome_text, cols: 60, rows: 5, class: 'wiki-edit' %>
|
|
<%= wikitoolbar_for 'settings_welcome_text' %>
|
|
</div>
|
|
<div class="form--field"><%= setting_check_box :welcome_on_homescreen %></div>
|
|
<div class="form--field"><%= setting_check_box :welcome_on_projects_page %></div>
|
|
</fieldset>
|
|
</section>
|
|
<%= styled_button_tag l(:button_save), class: '-highlight -with-icon icon-checkmark' %>
|
|
<% end %>
|
|
|