##// END OF EJS Templates
Fixed: custom fields empty on issue/edit (broken by r1086)....
Jean-Philippe Lang -
r1075:59c5d995c339
parent child
Show More
@@ -1,9 +1,11
1 <div class="splitcontentleft">
1 <div class="splitcontentleft">
2 <% values.each_with_index do |value, i| %>
2 <% i = 1 %>
3 <p><%= custom_field_tag_with_label value %></p>
3 <% for @custom_value in values %>
4 <% if i >= values.size / 2 - 1 %>
4 <p><%= custom_field_tag_with_label @custom_value %></p>
5 <% if i >= values.size / 2 %>
5 </div><div class="splitcontentright">
6 </div><div class="splitcontentright">
6 <% end %>
7 <% end %>
8 <% i += 1 %>
7 <% end %>
9 <% end %>
8 </div>
10 </div>
9 <div style="clear:both;"> </div>
11 <div style="clear:both;"> </div>
General Comments 0
You need to be logged in to leave comments. Login now