diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb index 13e147817..220954735 100644 --- a/app/controllers/timelog_controller.rb +++ b/app/controllers/timelog_controller.rb @@ -115,7 +115,6 @@ class TimelogController < ApplicationController def new @time_entry ||= TimeEntry.new(:project => @project, :issue => @issue, :user => User.current, :spent_on => User.current.today) @time_entry.attributes = params[:time_entry] - render :action => 'edit' end verify :method => :post, :only => :create, :render => {:nothing => true, :status => :method_not_allowed } diff --git a/app/views/timelog/_form.html.erb b/app/views/timelog/_form.html.erb new file mode 100644 index 000000000..9f7e28096 --- /dev/null +++ b/app/views/timelog/_form.html.erb @@ -0,0 +1,14 @@ +<%= error_messages_for 'time_entry' %> +<%= back_url_hidden_field_tag %> + +
<%= f.text_field :issue_id, :size => 6 %> <%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %>
+<%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %>
+<%= f.text_field :hours, :size => 6, :required => true %>
+<%= f.text_field :comments, :size => 100 %>
+<%= f.select :activity_id, activity_collection_for_select_options(@time_entry), :required => true %>
+ <% @time_entry.custom_field_values.each do |value| %> +<%= custom_field_tag_with_label :time_entry, value %>
+ <% end %> + <%= call_hook(:view_timelog_edit_form_bottom, { :time_entry => @time_entry, :form => f }) %> +<%= f.text_field :issue_id, :size => 6 %> <%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %>
-<%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %>
-<%= f.text_field :hours, :size => 6, :required => true %>
-<%= f.text_field :comments, :size => 100 %>
-<%= f.select :activity_id, activity_collection_for_select_options(@time_entry), :required => true %>
-<% @time_entry.custom_field_values.each do |value| %> -<%= custom_field_tag_with_label :time_entry, value %>
-<% end %> -<%= call_hook(:view_timelog_edit_form_bottom, { :time_entry => @time_entry, :form => f }) %> -