##// END OF EJS Templates
Moved wiki links tests together....
Moved wiki links tests together. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8254 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7955:2cca4938cf62
r8134:c8066879dba8
Show More
_overview.html.erb
25 lines | 1.3 KiB | text/plain | TextLexer
/ app / views / versions / _overview.html.erb
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <% if version.completed? %>
<p><%= format_date(version.effective_date) %></p>
<% elsif version.effective_date %>
Jean-Philippe Lang
Fixed: Roadmap crashes when a version has a due date > 2037....
r1885 <p><strong><%= due_date_distance_in_words(version.effective_date) %></strong> (<%= format_date(version.effective_date) %>)</p>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <% end %>
<p><%=h version.description %></p>
Jean-Philippe Lang
Adds custom fields for versions (#4219)....
r2950 <ul>
Toshi MARUYAMA
replace tabs to spaces at app/views/versions/_overview.html.erb...
r7275 <% version.custom_values.each do |custom_value| %>
<% if !custom_value.value.blank? %>
<li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
<% end %>
<% end %>
Jean-Philippe Lang
Adds custom fields for versions (#4219)....
r2950 </ul>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942
<% if version.fixed_issues.count > 0 %>
<%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
<p class="progress-info">
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
Jean-Philippe Lang
Removed open/closed percentage on the roadmap....
r7955 &#8212;
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 </p>
<% else %>
<p><em><%= l(:label_roadmap_no_issues) %></em></p>
<% end %>