2007-12-07 13:26:07 +03:00
|
|
|
<div class="contextual">
|
2011-07-05 20:29:06 +04:00
|
|
|
<%= link_to(l(:button_edit), edit_version_path(@version), :class => 'icon icon-edit') if User.current.allowed_to?(:manage_versions, @version.project) %>
|
2010-10-30 02:40:02 +04:00
|
|
|
<%= 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? %>
|
2011-07-05 20:29:06 +04:00
|
|
|
<%= link_to(l(:button_delete), version_path(@version, :back_url => url_for(:controller => 'versions', :action => 'index', :project_id => @version.project)),
|
2011-07-04 23:34:58 +04:00
|
|
|
:confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del') if User.current.allowed_to?(:manage_versions, @version.project) %>
|
2009-05-31 01:57:47 +04:00
|
|
|
<%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
|
2007-12-07 13:26:07 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2><%= h(@version.name) %></h2>
|
|
|
|
|
2011-04-29 16:05:18 +04:00
|
|
|
<div id="roadmap">
|
|
|
|
<%= render :partial => 'versions/overview', :locals => {:version => @version} %>
|
|
|
|
<%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %>
|
|
|
|
|
2008-03-08 14:17:03 +03:00
|
|
|
<div id="version-summary">
|
|
|
|
<% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
|
|
|
|
<fieldset><legend><%= l(:label_time_tracking) %></legend>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
|
2009-02-21 14:04:50 +03:00
|
|
|
<td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
|
2008-03-08 14:17:03 +03:00
|
|
|
</tr>
|
|
|
|
<% if User.current.allowed_to?(:view_time_entries, @project) %>
|
|
|
|
<tr>
|
|
|
|
<td width="130px" align="right"><%= l(:label_spent_time) %></td>
|
2009-02-21 14:04:50 +03:00
|
|
|
<td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
|
2008-03-08 14:17:03 +03:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
<% end %>
|
|
|
|
|
2007-12-07 18:02:57 +03:00
|
|
|
<div id="status_by">
|
2007-12-07 13:26:07 +03:00
|
|
|
<%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.count > 0 %>
|
|
|
|
</div>
|
2008-03-08 14:17:03 +03:00
|
|
|
</div>
|
2007-12-07 13:26:07 +03:00
|
|
|
|
2010-07-25 13:29:17 +04:00
|
|
|
<% if @issues.present? %>
|
2011-04-29 16:18:00 +04:00
|
|
|
<% form_tag({}) do -%>
|
|
|
|
<table class="list related-issues">
|
|
|
|
<caption><%= l(:label_related_issues) %></caption>
|
|
|
|
<%- @issues.each do |issue| -%>
|
|
|
|
<tr class="hascontextmenu">
|
|
|
|
<td class="checkbox"><%= check_box_tag 'ids[]', issue.id %></td>
|
|
|
|
<td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
|
|
|
<%= context_menu issues_context_menu_path %>
|
2008-03-08 14:17:03 +03:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2008-09-05 14:31:06 +04:00
|
|
|
<%= call_hook :view_versions_show_bottom, :version => @version %>
|
|
|
|
|
2011-08-02 17:16:45 +04:00
|
|
|
<% html_title h(@version.name) %>
|