To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / watchers / _watchers.html.erb @ 1298:4f746d8966dd
History | View | Annotate | Download (416 Bytes)
| 1 |
<% if User.current.allowed_to?(:add_issue_watchers, @project) %>
|
|---|---|
| 2 |
<div class="contextual"> |
| 3 |
<%= link_to l(:button_add),
|
| 4 |
{:controller => 'watchers', :action => 'new', :object_type => watched.class.name.underscore, :object_id => watched},
|
| 5 |
:remote => true,
|
| 6 |
:method => 'get' %>
|
| 7 |
</div>
|
| 8 |
<% end %>
|
| 9 |
|
| 10 |
<h3><%= l(:label_issue_watchers) %> (<%= watched.watcher_users.size %>)</h3> |
| 11 |
|
| 12 |
<%= watchers_list(watched) %>
|