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 / .svn / text-base / _form_custom_fields.rhtml.svn-base @ 442:753f1380d6bc

History | View | Annotate | Download (353 Bytes)

1
<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
	<p><%= custom_field_tag_with_label :issue, value %></p>
6
<% if i == split_on -%>
7
</div><div class="splitcontentright">
8
<% end -%>
9
<% i += 1 -%>
10
<% end -%>
11
</div>
12
<div style="clear:both;"> </div>