##// END OF EJS Templates
Reverted r9368....
Reverted r9368. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9370 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8473:c23e497c424a
r9236:d427d8e5675c
Show More
_watchers.html.erb
15 lines | 641 B | text/plain | TextLexer
/ app / views / watchers / _watchers.html.erb
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 <% if User.current.allowed_to?(:add_issue_watchers, @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">
Toshi MARUYAMA
remove trailing white-spaces from app/views/watchers/_watchers.html.erb...
r7117 <%= link_to_remote l(:button_add),
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711 :url => {:controller => 'watchers',
:action => 'new',
:object_type => watched.class.name.underscore,
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 :object_id => watched},
Jean-Philippe Lang
Avoid an AJAX query if the watchers form is already loaded....
r8473 :method => 'get',
:before => "if ($('ajax-modal').hasClassName('new-watcher')) {showModal('ajax-modal'); return false;}" %>
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) %>