@@ -1,31 +1,31 | |||
|
1 | 1 | <%= form_tag({:action => 'edit', :tab => 'issues'}, :onsubmit => 'selectAllOptions("selected_columns");') do %> |
|
2 | 2 | |
|
3 | 3 | <div class="box tabular settings"> |
|
4 | 4 | <p><%= setting_check_box :cross_project_issue_relations %></p> |
|
5 | 5 | |
|
6 | 6 | <p><%= setting_select :cross_project_subtasks, cross_project_subtasks_options %></p> |
|
7 | 7 | |
|
8 | 8 | <p><%= setting_check_box :issue_group_assignment %></p> |
|
9 | 9 | |
|
10 | 10 | <p><%= setting_check_box :default_issue_start_date_to_creation_date %></p> |
|
11 | 11 | |
|
12 | 12 | <p><%= setting_check_box :display_subprojects_issues %></p> |
|
13 | 13 | |
|
14 | 14 | <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p> |
|
15 | 15 | |
|
16 | 16 | <p><%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d.to_s]}, :inline => true %></p> |
|
17 | 17 | |
|
18 | 18 | <p><%= setting_text_field :issues_export_limit, :size => 6 %></p> |
|
19 | 19 | |
|
20 | 20 | <p><%= setting_text_field :gantt_items_limit, :size => 6 %></p> |
|
21 | 21 | </div> |
|
22 | 22 | |
|
23 | 23 | <fieldset class="box"> |
|
24 |
|
|
|
24 | <legend><%= l(:setting_issue_list_default_columns) %></legend> | |
|
25 | 25 | <%= render_query_columns_selection( |
|
26 | 26 | IssueQuery.new(:column_names => Setting.issue_list_default_columns), |
|
27 | 27 | :name => 'settings[issue_list_default_columns]') %> |
|
28 | 28 | </fieldset> |
|
29 | 29 | |
|
30 | 30 | <%= submit_tag l(:button_save) %> |
|
31 | 31 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now