<%#-- copyright OpenProject is an open source project management software. Copyright (C) 2012-2024 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See COPYRIGHT and LICENSE files for more details. ++#%> <%= toolbar title: @version.name do %> <% if authorize_for(:versions, :edit) %>
  • <%= link_to(edit_version_path(@version), class: 'button') do %> <%= op_icon('button--icon icon-edit') %> <%= t(:button_edit) %> <% end %>
  • <% end %> <% if authorize_for(:versions, :destroy) %>
  • <%= link_to version_path(@version), method: :delete, data: { confirm: t(:text_are_you_sure) }, class: "button -danger" do %> <%= op_icon 'button--icon icon-delete' %> <%= t(:button_delete) %> <% end %>
  • <% end %> <% if authorize_for(:wiki, :edit) && !(@version.wiki_page_title.blank? || @version.project.wiki.nil?) %>
  • <%= link_to({ controller: '/wiki', action: 'edit', project_id: @version.project, id: @version.wiki_page_title }, class: 'button') do %> <%= op_icon('button--icon icon-edit') %> <%= t(:button_edit_associated_wikipage, page_title: truncate(@version.wiki_page_title, length: 50, separator: ' ')) %> <% end %>
  • <% end %> <%= call_hook(:view_versions_show_contextual, { version: @version, project: @project }) %> <% end %>
    <%= render partial: 'versions/overview', locals: { version: @version } %>
    <% if @version.estimated_hours > 0 || User.current.allowed_in_project?(:view_time_entries, @project) %>
    <%= t(:label_estimates_and_progress) %> <% if User.current.allowed_in_project?(:view_time_entries, @project) %> <% end %>
    <%= Version.human_attribute_name(:estimated_hours) %> <%= html_hours(l_hours(@version.estimated_hours)) %>
    <%= t(:label_spent_time) %> <%= html_hours(l_hours(@version.spent_hours)) %>
    <% end %> <% if @version.wiki_page %>
    <%= render(partial: "wiki/text", locals: { page: @version.wiki_page }) if @version.wiki_page %>
    <% end %> <% if @issues.present? %>
    <% if @issues.present? %> <% end %>
    <% end %> <% if @version.work_packages.count > 0 %>
    <% end %>
    <%= call_hook :view_versions_show_bottom, version: @version %> <% html_title h(@version.name) %>