##// END OF EJS Templates
code cleanup test_with_a_start_date_attribute_* of unit IssuesHelperTest...
code cleanup test_with_a_start_date_attribute_* of unit IssuesHelperTest git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10264 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9841:922f1d5243b9
r10081:e4b7b7cc38e3
Show More
_watchers.html.erb
12 lines | 416 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">
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) %>