From: Marius Balteanu Date: Sat, 19 Mar 2022 11:27:57 +0000 (+0000) Subject: Add missing partial (#4347). X-Git-Tag: 5.0.0~29 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7c0edc26d475b569b5c7e1d7c68b0b8d9f55903e;p=redmine.git Add missing partial (#4347). git-svn-id: http://svn.redmine.org/redmine/trunk@21470 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- 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 %>