##// END OF EJS Templates
Merged r15490 to r15493, r15496, r15497 (#22951)....
Merged r15490 to r15493, r15496, r15497 (#22951). git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15500 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15096:6e68d008c4dc
r15118:8516e1c88dfe
Show More
_action_menu.html.erb
7 lines | 813 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">
Jean-Philippe Lang
Use :button_edit instead of :button_update for editing issues (#15275)....
r12055 <%= link_to l(:button_edit), edit_issue_path(@issue), :onclick => 'showAndScrollTo("update", "issue_notes"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit) if @issue.editable? %>
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
Don't wrap watcher link with span....
r11104 <%= watcher_link(@issue, User.current) %>
Jean-Philippe Lang
Adds a :copy_issues permission (#18855)....
r13603 <%= link_to l(:button_copy), project_copy_issue_path(@project, @issue), :class => 'icon icon-copy' if User.current.allowed_to?(:copy_issues, @project) && Issue.allowed_target_projects.any? %>
Jean-Philippe Lang
Merged 15430, 15464 to 15469, 15475, 15476 (#285, #7839)....
r15096 <%= link_to l(:button_delete), issue_path(@issue), :data => {:confirm => issues_destroy_confirmation_message(@issue)}, :method => :delete, :class => 'icon icon-del' if @issue.deletable? %>
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 </div>