##// END OF EJS Templates
scm: git: explicitly return string as default branch (#10207)...
scm: git: explicitly return string as default branch (#10207) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8857 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7231:a7a1d5e12804
r8737:58996e891ef7
Show More
_form_custom_fields.html.erb
12 lines | 354 B | text/plain | TextLexer
/ app / views / issues / _form_custom_fields.html.erb
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
Fixed: custom fields are not displayed in the same order on issue form and view....
r2722 <% split_on = (@issue.custom_field_values.size / 2.0).ceil - 1 %>
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% @issue.custom_field_values.each do |value| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_form_custom_fields.html.erb...
r7231 <p><%= custom_field_tag_with_label :issue, value %></p>
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% 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>