To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / issues / _form_custom_fields.rhtml @ 441:cbce1fd3b1b7
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> |