diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-08 10:41:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-08 10:41:09 +0000 |
commit | 161558e9d0d6f11bfbaedf71e282263077dc8577 (patch) | |
tree | 46b4ee534f48f6b91f5255b088593e1d738d9986 /app/views | |
parent | 2350bc29f4178645d69e1ecc40e3584e4d9d5ee8 (diff) | |
download | redmine-161558e9d0d6f11bfbaedf71e282263077dc8577.tar.gz redmine-161558e9d0d6f11bfbaedf71e282263077dc8577.zip |
Fixed that timelog comments are not visible on the responsive issue edit form (#19097).
git-svn-id: http://svn.redmine.org/redmine/trunk@14847 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/_edit.html.erb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/issues/_edit.html.erb b/app/views/issues/_edit.html.erb index 53d58c414..7415c79eb 100644 --- a/app/views/issues/_edit.html.erb +++ b/app/views/issues/_edit.html.erb @@ -12,12 +12,14 @@ <% if User.current.allowed_to?(:log_time, @project) %> <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend> <%= labelled_fields_for :time_entry, @time_entry do |time_entry| %> + <div class="splitcontent"> <div class="splitcontentleft"> <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p> </div> <div class="splitcontentright"> <p><%= time_entry.select :activity_id, activity_collection_for_select_options %></p> </div> + </div> <p><%= time_entry.text_field :comments, :size => 60 %></p> <% @time_entry.custom_field_values.each do |value| %> <p><%= custom_field_tag_with_label :time_entry, value %></p> |