diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-25 14:55:36 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-25 14:55:36 +0000 |
commit | b40d66f39fa8a0425ce2a08d4cf4007d814b97fb (patch) | |
tree | 87940a49e073ba7d61af294157b48fa1fdf9ba8c /app/views/custom_fields | |
parent | 8d713ae6ca643db8ce548b143635dee361f36ffe (diff) | |
download | redmine-b40d66f39fa8a0425ce2a08d4cf4007d814b97fb.tar.gz redmine-b40d66f39fa8a0425ce2a08d4cf4007d814b97fb.zip |
Option for long text custom fields to be displayed under the description field (#21705).
Based on patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/formats/_text.html.erb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/custom_fields/formats/_text.html.erb b/app/views/custom_fields/formats/_text.html.erb index e72dcab42..79ea7c5e6 100644 --- a/app/views/custom_fields/formats/_text.html.erb +++ b/app/views/custom_fields/formats/_text.html.erb @@ -1,3 +1,6 @@ <%= render :partial => 'custom_fields/formats/regexp', :locals => {:f => f, :custom_field => custom_field} %> <p><%= f.check_box :text_formatting, {:label => :setting_text_formatting}, 'full', '' %></p> +<% if @custom_field.class.name == "IssueCustomField" %> +<p><%= f.check_box :full_width_layout %></p> +<% end %> <p><%= f.text_area(:default_value, :rows => 5) %></p> |