##// END OF EJS Templates
scm: git: add tests for previous and next versions in unit model test (#7821, #5357)....
scm: git: add tests for previous and next versions in unit model test (#7821, #5357). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5074 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4144:c8177b99ed3b
r4954:c072d3b62fcd
Show More
_action_menu.rhtml
10 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
/ app / views / issues / _action_menu.rhtml
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)) %>
Eric Davis
Fix the Log Time link on an issue page...
r4129 <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'new', :issue_id => @issue}, :class => 'icon icon-time-add' %>
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 <% replace_watcher ||= 'watcher' %>
<%= watcher_tag(@issue, User.current, {:id => replace_watcher, :replace => ['watcher','watcher2']}) %>
Jean-Philippe Lang
Removes the 'Copy' checkbox on the copy/move form....
r3013 <%= link_to_if_authorized l(:button_duplicate), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-duplicate' %>
Eric Davis
Revert part of r3936....
r4144 <%= link_to_if_authorized l(:button_copy), {:controller => 'issue_moves', :action => 'new', :id => @issue, :copy_options => {:copy => 't'}}, :class => 'icon icon-copy' %>
<%= link_to_if_authorized l(:button_move), {:controller => 'issue_moves', :action => 'new', :id => @issue}, :class => 'icon icon-move' %>
Eric Davis
Updated issue delete confirmation when it has child issues. #6191...
r3991 <%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => (@issue.leaf? ? l(:text_are_you_sure) : l(:text_are_you_sure_with_children)), :method => :post, :class => 'icon icon-del' %>
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 </div>