##// END OF EJS Templates
Adds a view for editing all trackers fields....
Adds a view for editing all trackers fields. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10283 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9754:7b40767428ac
r10100:3a32edc3bd10
Show More
_action_menu.html.erb
7 lines | 846 B | text/plain | TextLexer
/ app / views / issues / _action_menu.html.erb
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 <div class="contextual">
<%= link_to_if_authorized(l(:button_update), {:controller => 'issues', :action => 'edit', :id => @issue }, :onclick => 'showAndScrollTo("update", "notes"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit)) %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= link_to l(:button_log_time), new_issue_time_entry_path(@issue), :class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project) %>
Jean-Philippe Lang
Cleaner way to handle the replacement of watch links (#8071)....
r5200 <%= watcher_tag(@issue, User.current) %>
Jean-Philippe Lang
Use the regular issue form to copy a single issue....
r8432 <%= link_to_if_authorized l(:button_copy), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue}, :class => 'icon icon-copy' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= link_to l(:button_delete), issue_path(@issue), :data => {:confirm => issues_destroy_confirmation_message(@issue)}, :method => :delete, :class => 'icon icon-del' if User.current.allowed_to?(:delete_issues, @project) %>
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 </div>