From 7c0edc26d475b569b5c7e1d7c68b0b8d9f55903e Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Sat, 19 Mar 2022 11:27:57 +0000 Subject: [PATCH] Add missing partial (#4347). git-svn-id: http://svn.redmine.org/redmine/trunk@21470 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/users/_auto_watch_on.html.erb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/views/users/_auto_watch_on.html.erb diff --git a/app/views/users/_auto_watch_on.html.erb b/app/views/users/_auto_watch_on.html.erb new file mode 100644 index 000000000..28d1fa21f --- /dev/null +++ b/app/views/users/_auto_watch_on.html.erb @@ -0,0 +1,5 @@ +<%= labelled_fields_for :pref, @user.pref do |pref_fields| %> + <%= pref_fields.collection_check_boxes :auto_watch_on, auto_watch_on_options, :last, :first, :checked => @user.pref.auto_watch_on do |b| %> +

<%= b.check_box %> <%= b.label %>

+ <% end %> +<% end %> -- 2.39.5