##// END OF EJS Templates
Fixed STARTTLS option key (#19232)....
Fixed STARTTLS option key (#19232). git-svn-id: http://svn.redmine.org/redmine/trunk@14047 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12398:a525bc8e98f6
r13665:2800598832d2
Show More
_new.html.erb
27 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 <h3 class="title"><%= l(:permission_add_issue_watchers) %></h3>
Jean-Philippe Lang
Removes a call to form_remote_tag....
r9853 <%= form_tag({:controller => 'watchers',
:action => (watched ? 'create' : 'append'),
Jean-Philippe Lang
Bulk watch/unwatch issues from the context menu (#7159)....
r11109 :object_type => (watched && watched.class.name.underscore),
:object_id => watched,
:project_id => @project},
Jean-Philippe Lang
Removes a call to form_remote_tag....
r9853 :remote => true,
:method => :post,
:id => 'new-watcher-form') do %>
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472
<p><%= label_tag 'user_search', l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <%= javascript_tag "observeSearchfield('user_search', 'users_for_watcher', '#{ escape_javascript url_for(:controller => 'watchers',
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 :action => 'autocomplete_for_user',
Jean-Philippe Lang
Bulk watch/unwatch issues from the context menu (#7159)....
r11109 :object_type => (watched && watched.class.name.underscore),
:object_id => watched,
:project_id => @project) }')" %>
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472
<div id="users_for_watcher">
Jean-Philippe Lang
Don't display default watchers checkboxes on the new issue form when there are more than 20 members (#8562)....
r12398 <%= principals_check_box_tags('watcher[user_ids][]', users) %>
Jean-Philippe Lang
Ability to add non-member users as watchers (#5159)....
r8472 </div>
<p class="buttons">
<%= submit_tag l(:button_add), :name => nil, :onclick => "hideModal(this);" %>
<%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
</p>
<% end %>