_general.rhtml
44 lines
| 2.2 KiB
| text/html+ruby
|
RhtmlLexer
|
r1033 | <% form_tag({:action => 'edit'}) do %> | ||
<div class="box tabular settings"> | ||||
<p><label><%= l(:setting_app_title) %></label> | ||||
<%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p> | ||||
<p><label><%= l(:setting_welcome_text) %></label> | ||||
<%= text_area_tag 'settings[welcome_text]', Setting.welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p> | ||||
<%= wikitoolbar_for 'settings[welcome_text]' %> | ||||
<p><label><%= l(:setting_attachment_max_size) %></label> | ||||
<%= text_field_tag 'settings[attachment_max_size]', Setting.attachment_max_size, :size => 6 %> KB</p> | ||||
<p><label><%= l(:setting_per_page_options) %></label> | ||||
<%= text_field_tag 'settings[per_page_options]', Setting.per_page_options_array.join(', '), :size => 20 %><br /><em><%= l(:text_comma_separated) %></em></p> | ||||
|
r1182 | <p><label><%= l(:setting_activity_days_default) %></label> | ||
<%= text_field_tag 'settings[activity_days_default]', Setting.activity_days_default, :size => 6 %> <%= l(:label_day_plural) %></p> | ||||
|
r1033 | <p><label><%= l(:setting_host_name) %></label> | ||
|
r1987 | <%= text_field_tag 'settings[host_name]', Setting.host_name, :size => 60 %><br /> | ||
<em><%= l(:label_example) %>: <%= @guessed_host_and_path %></em></p> | ||||
|
r1033 | |||
<p><label><%= l(:setting_protocol) %></label> | ||||
<%= select_tag 'settings[protocol]', options_for_select(['http', 'https'], Setting.protocol) %></p> | ||||
<p><label><%= l(:setting_text_formatting) %></label> | ||||
|
r1953 | <%= select_tag 'settings[text_formatting]', options_for_select([[l(:label_none), "0"], *Redmine::WikiFormatting.format_names.collect{|name| [name, name]} ], Setting.text_formatting.to_sym) %></p> | ||
|
r1033 | |||
<p><label><%= l(:setting_wiki_compression) %></label> | ||||
<%= select_tag 'settings[wiki_compression]', options_for_select( [[l(:label_none), 0], ["gzip", "gzip"]], Setting.wiki_compression) %></p> | ||||
<p><label><%= l(:setting_feeds_limit) %></label> | ||||
<%= text_field_tag 'settings[feeds_limit]', Setting.feeds_limit, :size => 6 %></p> | ||||
|
r1970 | |||
|
r2440 | <p><label><%= l(:setting_file_max_size_displayed) %></label> | ||
|
r2441 | <%= text_field_tag 'settings[file_max_size_displayed]', Setting.file_max_size_displayed, :size => 6 %> KB</p> | ||
|
r2440 | |||
|
r2110 | <p><label><%= l(:setting_diff_max_lines_displayed) %></label> | ||
<%= text_field_tag 'settings[diff_max_lines_displayed]', Setting.diff_max_lines_displayed, :size => 6 %></p> | ||||
|
r1033 | </div> | ||
<%= submit_tag l(:button_save) %> | ||||
<% end %> | ||||