修改里程碑代码
This commit is contained in:
parent
95c5e6ac83
commit
e2f7da5b99
|
@ -70,109 +70,6 @@
|
|||
<% end %>
|
||||
</div><!--roadmap end-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--modified by young-->
|
||||
<div class="project_r_h">
|
||||
<h2 class="project_h2"><%= l(:label_roadmap) %></h2>
|
||||
</div>
|
||||
<div class="content-title-top">
|
||||
<%= link_to l(:label_version_new), new_project_version_path(@project), :class => 'icon icon-add' if User.current.allowed_to?(:manage_versions, @project) %>
|
||||
</div>
|
||||
|
||||
<!-- <h3 style="padding-top:0px;padding-bottom: 0px;"><%= l(:label_roadmap) %></h3> -->
|
||||
<!--check boxes-->
|
||||
<fieldset id="filters" class="collapsible collapsed" style="background-color: #FFF">
|
||||
<legend><%= l(:label_version_display_settings)%></legend>
|
||||
<%= 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 %>
|
||||
<%=h tracker.name %></label>
|
||||
<% 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 %>
|
||||
<label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
|
||||
<% end %>
|
||||
<%= submit_tag l(:button_apply), :class => 'button', :name => nil %>
|
||||
<% end %>
|
||||
|
||||
<!-- <h3><%= l(:label_version_plural) %></h3>
|
||||
<% @versions.each do |version| %>
|
||||
<%= link_to format_version_name(version), "##{version_anchor(version)}", :class =>" f16 fb c_dblue " %><br />
|
||||
<% end %> -->
|
||||
<% 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;">
|
||||
<%= @completed_versions.map {|version| link_to format_version_name(version), version_path(version)}.join(" \n").html_safe %><!--Modified by young-->
|
||||
</span>
|
||||
</p>
|
||||
<% end %>
|
||||
</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>
|
||||
<% end %>
|
||||
|
||||
|
||||
<% html_title(l(:label_roadmap)) %>
|
||||
|
||||
<%= context_menu issues_context_menu_path %>
|
||||
|
|
Loading…
Reference in New Issue