16 lines
641 B
Plaintext
16 lines
641 B
Plaintext
<% if User.current.allowed_to?(:add_issue_watchers, @project) %>
|
|
<div class="contextual">
|
|
<%= link_to_remote l(:button_add),
|
|
:url => {:controller => 'watchers',
|
|
:action => 'new',
|
|
:object_type => watched.class.name.underscore,
|
|
:object_id => watched},
|
|
:method => 'get',
|
|
:before => "if ($('ajax-modal').hasClassName('new-watcher')) {showModal('ajax-modal'); return false;}" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<h3><%= l(:label_issue_watchers) %> (<%= watched.watcher_users.size %>)</h3>
|
|
|
|
<%= watchers_list(watched) %>
|