summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2022-03-19 11:27:57 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2022-03-19 11:27:57 +0000
commit7c0edc26d475b569b5c7e1d7c68b0b8d9f55903e (patch)
tree41e2b634b857c448253f214312cb11131f8538de
parente50190a82a5b6a066a3fadfdebf9df6e268719ad (diff)
downloadredmine-7c0edc26d475b569b5c7e1d7c68b0b8d9f55903e.tar.gz
redmine-7c0edc26d475b569b5c7e1d7c68b0b8d9f55903e.zip
Add missing partial (#4347).
git-svn-id: http://svn.redmine.org/redmine/trunk@21470 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/users/_auto_watch_on.html.erb5
1 files changed, 5 insertions, 0 deletions
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| %>
+ <p><%= b.check_box %> <%= b.label %></p>
+ <% end %>
+<% end %>