##// END OF EJS Templates
Display custom_field_values instead of custom_values....
Jean-Philippe Lang -
r8605:0cd62a3c7776
parent child
Show More
@@ -7,8 +7,8
7 <p><%=h version.description %></p>
7 <p><%=h version.description %></p>
8 <% if version.custom_values.any? %>
8 <% if version.custom_values.any? %>
9 <ul>
9 <ul>
10 <% version.custom_values.each do |custom_value| %>
10 <% version.custom_field_values.each do |custom_value| %>
11 <% if !custom_value.value.blank? %>
11 <% if custom_value.value.present? %>
12 <li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
12 <li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
13 <% end %>
13 <% end %>
14 <% end %>
14 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now