##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13856:5c18e6d0459b
r14351:68620da79ab5
Show More
_watchers.html.erb
12 lines | 423 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),
{:controller => 'watchers', :action => 'new', :object_type => watched.class.name.underscore, :object_id => watched},
: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) %>