]> source.dussan.org Git - redmine.git/commitdiff
Fixed: Adding time when Updating a ticket is gone (closes #701).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 21 Feb 2008 17:50:33 +0000 (17:50 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 21 Feb 2008 17:50:33 +0000 (17:50 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1165 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_edit.rhtml

index 7c4cf501ca83ebb305e71723a8a5872014848a75..f9b234d857f383883eeeff44d6547720ff1bee78 100644 (file)
         <%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %>
         </fieldset>
     <% end %>
+    <% if authorize_for('timelog', 'edit') %>
+    <fieldset><legend><%= l(:button_log_time) %></legend>
+        <% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
+        <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.text_field :comments, :size => 40 %></p>
+        <p><%= time_entry.select :activity_id, (@activities.collect {|p| [p.name, p.id]}) %></p>
+        </div>
+        <% end %>
+    </fieldset>
+    <% end %>
     
     <fieldset><legend><%= l(:field_notes) %></legend>
     <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>