To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / issues / _form_custom_fields.html.erb @ 912:5e80956cc792

History | View | Annotate | Download (354 Bytes)

1 0:513646585e45 Chris
<div class="splitcontentleft">
2
<% i = 0 %>
3
<% split_on = (@issue.custom_field_values.size / 2.0).ceil - 1 %>
4
<% @issue.custom_field_values.each do |value| %>
5 909:cbb26bc654de Chris
  <p><%= custom_field_tag_with_label :issue, value %></p>
6 0:513646585e45 Chris
<% if i == split_on -%>
7
</div><div class="splitcontentright">
8
<% end -%>
9
<% i += 1 -%>
10
<% end -%>
11
</div>
12
<div style="clear:both;"> </div>