Commit 0b4a02f6 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

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
parent b6549d76
......@@ -28,7 +28,7 @@ module CustomFieldsHelper
text_field('custom_value', 'value', :name => field_name, :id => field_id, :size => 10) +
calendar_for(field_id)
when "text"
text_area 'custom_value', 'value', :name => field_name, :id => field_id, :cols => 60, :rows => 3
text_area 'custom_value', 'value', :name => field_name, :id => field_id, :rows => 3, :style => 'width:99%'
when "bool"
check_box 'custom_value', 'value', :name => field_name, :id => field_id
when "list"
......
......@@ -38,9 +38,8 @@
:accesskey => accesskey(:edit),
:class => 'wiki-edit' %></p>
<p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
<% for @custom_value in @custom_values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
<% end %>
<%= render :partial => 'form_custom_fields', :locals => {:values => @custom_values} %>
<% if @issue.new_record? %>
<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
......
<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>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment