##// END OF EJS Templates
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
remove trailing white-spaces from app/views/issues/_attributes.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7313 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7118:a5ae3709bc05
r7193:60d80e9d314e
Show More
_watchers.html.erb
26 lines | 1.1 KiB | text/plain | TextLexer
/ app / views / watchers / _watchers.html.erb
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,
:object_id => watched} if User.current.allowed_to?(:add_issue_watchers, @project) %>
</div>
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
<% unless @watcher.nil? %>
Toshi MARUYAMA
replace tabs to spaces at app/views/watchers/_watchers.html.erb...
r7118 <% remote_form_for(:watcher, @watcher,
:url => {:controller => 'watchers',
:action => 'new',
:object_type => watched.class.name.underscore,
:object_id => watched},
:method => :post,
:html => {:id => 'new-watcher-form'}) do |f| %>
<p><%= f.select :user_id, (watched.addable_watcher_users.collect {|m| [m.name, m.id]}), :prompt => "--- #{l(:actionview_instancetag_blank_option)} ---" %>
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711
Toshi MARUYAMA
replace tabs to spaces at app/views/watchers/_watchers.html.erb...
r7118 <%= submit_tag l(:button_add) %>
<%= toggle_link l(:button_cancel), 'new-watcher-form'%></p>
<% end %>
Jean-Philippe Lang
Adds permissions for viewing the watcher list and adding new watchers on the issue detail view (#398)....
r1711 <% end %>
Jean-Philippe Lang
Move issue watchers to the sidebar....
r3465
<%= watchers_list(watched) %>