##// END OF EJS Templates
Replaces acts_as_list with an implementation that handles #position= (#12909)....
Replaces acts_as_list with an implementation that handles #position= (#12909). Objects are reordered using the regular attribute writer #position= and AR callbacks. git-svn-id: http://svn.redmine.org/redmine/trunk@15335 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14930:9c2545e28d07
r14953:64afa24a7f72
Show More
_watchers.html.erb
12 lines | 395 B | text/plain | TextLexer
/ app / views / watchers / _watchers.html.erb
Jean-Philippe Lang
Refresh watchers list when watching/unwatching an issue (#4334)....
r13856 <% if User.current.allowed_to?(:add_issue_watchers, watched.project) %>
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711 <div class="contextual">
Jean-Philippe Lang
Removes a call to link_to_remote....
r9841 <%= link_to l(:button_add),
Jean-Philippe Lang
Use named route....
r14930 new_watchers_path(:object_type => watched.class.name.underscore, :object_id => watched),
Jean-Philippe Lang
Removes a call to link_to_remote....
r9841 :remote => true,
:method => 'get' %>
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711 </div>
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 <% end %>
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711
Jean-Philippe Lang
Move issue watchers to the sidebar....
r3465 <h3><%= l(:label_issue_watchers) %> (<%= watched.watcher_users.size %>)</h3>
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711
Jean-Philippe Lang
Move issue watchers to the sidebar....
r3465 <%= watchers_list(watched) %>