From d461363d27b9acf371445bd29b2618363d1cc1bf Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Thu, 21 Feb 2008 17:50:33 +0000 Subject: [PATCH] Fixed: Adding time when Updating a ticket is gone (closes #701). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1165 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/_edit.rhtml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/views/issues/_edit.rhtml b/app/views/issues/_edit.rhtml index 7c4cf501..f9b234d8 100644 --- a/app/views/issues/_edit.rhtml +++ b/app/views/issues/_edit.rhtml @@ -14,6 +14,19 @@ <%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %> <% end %> + <% if authorize_for('timelog', 'edit') %> +
<%= l(:button_log_time) %> + <% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %> +
+

<%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %>

+
+
+

<%= time_entry.text_field :comments, :size => 40 %>

+

<%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %>

+
+ <% end %> +
+ <% end %>
<%= l(:field_notes) %> <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>