diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-10-19 11:43:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-10-19 11:43:23 +0000 |
commit | 95188f26c3f47f110c6d928e5df0b108802032b3 (patch) | |
tree | 87c6eb46833289a4d8cfbe921060b34c75393949 /app/views | |
parent | 45f039187df03e8925cb0d08ccc1838c9ea2d5c2 (diff) | |
download | redmine-95188f26c3f47f110c6d928e5df0b108802032b3.tar.gz redmine-95188f26c3f47f110c6d928e5df0b108802032b3.zip |
Set default columns for the projects list (#29482).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18766 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/settings/_projects.html.erb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/settings/_projects.html.erb b/app/views/settings/_projects.html.erb index fd9ea1b76..230e2803e 100644 --- a/app/views/settings/_projects.html.erb +++ b/app/views/settings/_projects.html.erb @@ -16,5 +16,13 @@ :blank => "--- #{l(:actionview_instancetag_blank_option)} ---" %></p> </div> +<fieldset class="box"> + <legend><%= l(:setting_project_list_defaults) %></legend> + <% query = ProjectQuery.new(Setting.project_list_defaults) %> + <%= render_query_columns_selection(query, + :name => 'settings[project_list_defaults][column_names]') %> +</fieldset> + + <%= submit_tag l(:button_save) %> <% end %> |