1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-25 09:51:14 +00:00
redmine/app/views/issues/_form_custom_fields.rhtml
Jean-Philippe Lang 0b4a02f607 Display custom fields in two columns on the issue form.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1086 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-01-20 17:20:34 +00:00

10 lines
263 B
Plaintext

<div class="splitcontentleft">
<% values.each_with_index do |value, i| %>
<p><%= custom_field_tag_with_label value %></p>
<% if i >= values.size / 2 - 1 %>
</div><div class="splitcontentright">
<% end %>
<% end %>
</div>
<div style="clear:both;"> </div>