##// END OF EJS Templates
Adds links to changesets atom feed on repository browser (#1873)....
Adds links to changesets atom feed on repository browser (#1873). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1802 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1730:237a3f52a2d9
r1800:b73141a1537c
Show More
_form_custom_fields.rhtml
12 lines | 340 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _form_custom_fields.rhtml
<div class="splitcontentleft">
<% i = 0 %>
<% split_on = @issue.custom_field_values.size / 2 %>
<% @issue.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :issue, value %></p>
<% if i == split_on -%>
</div><div class="splitcontentright">
<% end -%>
<% i += 1 -%>
<% end -%>
</div>
<div style="clear:both;"> </div>