diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-02-15 10:04:25 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-02-15 10:04:25 +0000 |
commit | 4a2114c73b770739402459fbaa7dd6c124388069 (patch) | |
tree | f3b3e6c6cfc078912f2a29e2560c512b676d1144 /app/views/custom_fields | |
parent | 1114bf5e99e43fca2347be1ed1a18bb64f5a45b2 (diff) | |
download | redmine-4a2114c73b770739402459fbaa7dd6c124388069.tar.gz redmine-4a2114c73b770739402459fbaa7dd6c124388069.zip |
Move the field format at the top of the form.
git-svn-id: http://svn.redmine.org/redmine/trunk@12897 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb index 0ef7843c6..0e1851d01 100644 --- a/app/views/custom_fields/_form.html.erb +++ b/app/views/custom_fields/_form.html.erb @@ -2,9 +2,9 @@ <div class="splitcontentleft"> <div class="box tabular"> +<p><%= f.select :field_format, custom_field_formats_for_select(@custom_field), {}, :disabled => !@custom_field.new_record? %></p> <p><%= f.text_field :name, :required => true %></p> <p><%= f.text_area :description, :rows => 7 %></p> -<p><%= f.select :field_format, custom_field_formats_for_select(@custom_field), {}, :disabled => !@custom_field.new_record? %></p> <% if @custom_field.format.multiple_supported %> <p> |