##// END OF EJS Templates
scm: git: reduce saving heads times in fetching revisions (#8857, #9472)...
scm: git: reduce saving heads times in fetching revisions (#8857, #9472) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9143 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8432:121bc44cc504
r9023:bcba955456c7
Show More
_action_menu.html.erb
7 lines | 832 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)) %>
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' %>
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
Changed IssuesController#destroy to DELETE only....
r8030 <%= link_to l(:button_delete), issue_path(@issue), :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>