##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1730:237a3f52a2d9
r1770:8f3a04ce6906
Show More
_form_custom_fields.rhtml
12 lines | 340 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _form_custom_fields.rhtml
Jean-Philippe Lang
Display custom fields in two columns on the issue form....
r1072 <div class="splitcontentleft">
Jean-Philippe Lang
Fixes custom fields display order at several places (#1768)....
r1730 <% i = 0 %>
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% 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 -%>
Jean-Philippe Lang
Display custom fields in two columns on the issue form....
r1072 </div><div class="splitcontentright">
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% end -%>
<% i += 1 -%>
<% end -%>
Jean-Philippe Lang
Display custom fields in two columns on the issue form....
r1072 </div>
<div style="clear:both;"> </div>