2013-08-05 21:41:08 +08:00
|
|
|
<!--modified by young-->
|
2013-11-08 20:09:21 +08:00
|
|
|
<div class="content-title-top">
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= link_to l(:label_version_new), new_project_version_path(@project), :class => 'icon icon-add' if User.current.allowed_to?(:manage_versions, @project) %>
|
|
|
|
</div>
|
|
|
|
|
2013-11-08 20:09:21 +08:00
|
|
|
<!-- <h3 style="padding-top:0px;padding-bottom: 0px;"><%= l(:label_roadmap) %></h3> -->
|
2013-08-05 21:41:08 +08:00
|
|
|
<!--check boxes-->
|
|
|
|
<fieldset id="filters" class="collapsible collapsed" style="background-color: #FFF">
|
2013-08-14 21:26:35 +08:00
|
|
|
<legend><%= l(:label_version_display_settings)%></legend>
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= form_tag({}, :method => :get) do %>
|
|
|
|
<% @trackers.each do |tracker| %>
|
|
|
|
<label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s), :id => nil %>
|
2013-08-05 21:41:08 +08:00
|
|
|
<%=h tracker.name %></label>
|
2013-08-01 10:33:49 +08:00
|
|
|
<% end %>
|
|
|
|
<label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label>
|
|
|
|
<% if @project.descendants.active.any? %>
|
|
|
|
<%= hidden_field_tag 'with_subprojects', 0 %>
|
2013-08-05 21:41:08 +08:00
|
|
|
<label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
|
2013-08-01 10:33:49 +08:00
|
|
|
<% end %>
|
2013-08-05 21:41:08 +08:00
|
|
|
<%= submit_tag l(:button_apply), :class => 'button-small', :style => "height:20px;padding: 1px 1px;font-size:11px;margin-left:10px;", :name => nil %>
|
2013-08-01 10:33:49 +08:00
|
|
|
<% end %>
|
|
|
|
|
2013-08-05 21:41:08 +08:00
|
|
|
<!-- <h3><%= l(:label_version_plural) %></h3>
|
2013-08-01 10:33:49 +08:00
|
|
|
<% @versions.each do |version| %>
|
|
|
|
<%= link_to format_version_name(version), "##{version_anchor(version)}" %><br />
|
2013-08-05 21:41:08 +08:00
|
|
|
<% end %> -->
|
2013-08-01 10:33:49 +08:00
|
|
|
<% if @completed_versions.present? %>
|
|
|
|
<p>
|
|
|
|
<%= link_to_function l(:label_completed_versions),
|
|
|
|
'$("#toggle-completed-versions").toggleClass("collapsed"); $("#completed-versions").toggle()',
|
|
|
|
:id => 'toggle-completed-versions', :class => 'collapsible collapsed' %><br />
|
|
|
|
<span id="completed-versions" style="display:none;">
|
2013-08-07 09:21:05 +08:00
|
|
|
<%= @completed_versions.map {|version| link_to format_version_name(version), version_path(version)}.join(" \n").html_safe %><!--Modified by young-->
|
2013-08-01 10:33:49 +08:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
2013-08-05 21:41:08 +08:00
|
|
|
</fieldset>
|
|
|
|
<!--check boxes-->
|
|
|
|
|
|
|
|
<% if @versions.empty? %>
|
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
|
|
<% else %>
|
|
|
|
<div id="roadmap">
|
|
|
|
<% @versions.each do |version| %>
|
|
|
|
<div class="box">
|
|
|
|
<h3 class="version" style="padding-top:0px;padding-bottom:0px;background-color: inherit;">
|
|
|
|
<p style="padding-left: 10px;font-size: 16px;">
|
|
|
|
<%= link_to_version version, :name => version_anchor(version) %>
|
|
|
|
<% if version.completed? %>
|
|
|
|
<span style="font-size:11px;float:right;"><%= format_date(version.effective_date) %></span>
|
|
|
|
<% elsif version.effective_date %>
|
|
|
|
<span style="font-size:11px;float:right;"><strong><%= due_date_distance_in_words(version.effective_date) %></strong> (<%= format_date(version.effective_date) %>)</span>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
</h3>
|
|
|
|
<%= render :partial => 'versions/overview', :locals => {:version => version} %>
|
|
|
|
<%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>
|
|
|
|
<% if (issues = @issues_by_version[version]) && issues.size > 0 %>
|
|
|
|
<%= form_tag({}) do -%>
|
|
|
|
<table class="list related-issues">
|
|
|
|
<caption>»<%= l(:label_related_issues) %></caption>
|
|
|
|
<% issues.each do |issue| -%>
|
|
|
|
<tr class="hascontextmenu">
|
|
|
|
<td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end -%>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<!--Moved by young from _overview.html.erb-->
|
|
|
|
»<%= l(:label_versions_description)%>
|
|
|
|
<p style="font-size:11px;"><%=h version.description %></p>
|
|
|
|
<% if version.custom_field_values.any? %>
|
|
|
|
<ul>
|
|
|
|
<% version.custom_field_values.each do |custom_value| %>
|
|
|
|
<% if custom_value.value.present? %>
|
|
|
|
<li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
<% end %>
|
|
|
|
<!--end by young-->
|
|
|
|
<%= call_hook :view_projects_roadmap_version_bottom, :version => version %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<div class="pagination">
|
|
|
|
<ul>
|
|
|
|
<%= pagination_links_full @versions_pages%>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-08-01 10:33:49 +08:00
|
|
|
<% end %>
|
|
|
|
|
2013-08-05 21:41:08 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
<% html_title(l(:label_roadmap)) %>
|
|
|
|
|
|
|
|
<%= context_menu issues_context_menu_path %>
|