##// END OF EJS Templates
add missing fixtures to TimeEntryActivityTest...
add missing fixtures to TimeEntryActivityTest git-svn-id: http://svn.redmine.org/redmine/trunk@13386 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11401:a97a2fec3f6a
r13025:34beae1c7a78
Show More
_overview.html.erb
39 lines | 1.7 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
Display of multi custom fields....
r8606 <% if version.custom_field_values.any? %>
Jean-Philippe Lang
Adds custom fields for versions (#4219)....
r2950 <ul>
Jean-Philippe Lang
Display custom_field_values instead of custom_values....
r8605 <% version.custom_field_values.each do |custom_value| %>
<% if custom_value.value.present? %>
Toshi MARUYAMA
replace tabs to spaces at app/views/versions/_overview.html.erb...
r7275 <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
Do not generate empty uls....
r8437 <% end %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942
Jean-Philippe Lang
Use #issues_count which is already retrieved....
r8935 <% if version.issues_count > 0 %>
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/versions/_overview.html.erb...
r11401 <%= progress_bar([version.closed_percent, version.completed_percent],
:width => '40em', :legend => ('%0.0f%' % version.completed_percent)) %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <p class="progress-info">
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/versions/_overview.html.erb...
r11401 <%= link_to(l(:label_x_issues, :count => version.issues_count),
project_issues_path(version.project,
:status_id => '*', :fixed_version_id => version,
:set_filter => 1)) %>
&nbsp;
(<%= link_to_if(version.closed_issues_count > 0,
l(:label_x_closed_issues_abbr, :count => version.closed_issues_count),
project_issues_path(version.project, :status_id => 'c',
:fixed_version_id => version, :set_filter => 1)) %>
Jean-Philippe Lang
Removed open/closed percentage on the roadmap....
r7955 &#8212;
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/versions/_overview.html.erb...
r11401 <%= link_to_if(version.open_issues_count > 0,
l(:label_x_open_issues_abbr, :count => version.open_issues_count),
project_issues_path(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 %>
Jean-Philippe Lang
Adds total number of issues for each version on the roadmap....
r8509 <p class="progress-info"><%= l(:label_roadmap_no_issues) %></p>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <% end %>