Patch #28138 » 0001-Add-New-issue-button-on-version-show-page.patch
| app/views/versions/show.html.erb | ||
|---|---|---|
| 1 | 1 | 
    <div class="contextual">  | 
| 2 | 2 | 
    <%= link_to(l(:button_edit), edit_version_path(@version), :class => 'icon icon-edit') if User.current.allowed_to?(:manage_versions, @version.project) %>  | 
| 3 | 
    <% if new_issue_tracker = Issue.allowed_target_trackers(@project).detect { |tracker| tracker.core_fields.include? 'fixed_version_id' } %>
   | 
|
| 4 | 
    <%= link_to_if_authorized(l(:label_issue_new), {controller: 'issues', action: 'new', project_id: @project, :issue => {tracker_id: new_issue_tracker, fixed_version_id: @version.id}}, :class => 'icon icon-add') %>
   | 
|
| 5 | 
    <% end %>  | 
|
| 3 | 6 | 
    <%= link_to_if_authorized(l(:button_edit_associated_wikipage, :page_title => @version.wiki_page_title), {:controller => 'wiki', :action => 'edit', :project_id => @version.project, :id => Wiki.titleize(@version.wiki_page_title)}, :class => 'icon icon-edit') unless @version.wiki_page_title.blank? || @version.project.wiki.nil? %>
   | 
| 4 | 7 | 
    <%= delete_link version_path(@version, :back_url => url_for(:controller => 'versions', :action => 'index', :project_id => @version.project)) if User.current.allowed_to?(:manage_versions, @version.project) %>  | 
| 5 | 8 | 
    <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
   |