<%= link_to_if_authorized l(:button_edit), {:controller => 'versions', :action => 'edit', :id => @version}, :class => 'icon icon-edit' %> <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>

<%= h(@version.name) %>

<% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
<%= l(:label_time_tracking) %> <% if User.current.allowed_to?(:view_time_entries, @project) %> <% end %>
<%= l(:field_estimated_hours) %> <%= html_hours(l_hours(@version.estimated_hours)) %>
<%= l(:label_spent_time) %> <%= html_hours(l_hours(@version.spent_hours)) %>
<% end %>
<%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.count > 0 %>
<%= render :partial => 'versions/overview', :locals => {:version => @version} %> <%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %> <% issues = @version.fixed_issues.find(:all, :include => [:status, :tracker, :priority], :order => "#{Tracker.table_name}.position, #{Issue.table_name}.id") %> <% if issues.size > 0 %> <% end %>
<%= call_hook :view_versions_show_bottom, :version => @version %> <% html_title @version.name %>