diff options
Diffstat (limited to 'app/views/timelog/edit.html.erb')
-rw-r--r-- | app/views/timelog/edit.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/timelog/edit.html.erb b/app/views/timelog/edit.html.erb index c9b575179..0f8a81e9e 100644 --- a/app/views/timelog/edit.html.erb +++ b/app/views/timelog/edit.html.erb @@ -1,6 +1,6 @@ <h2><%= l(:label_spent_time) %></h2> -<% labelled_tabular_form_for(:time_entry, @time_entry, :url => { +<% labelled_form_for(:time_entry, @time_entry, :url => { :action => (@time_entry.new_record? ? 'create' : 'update'), :id => @time_entry, :project_id => @time_entry.project @@ -9,7 +9,7 @@ <%= error_messages_for 'time_entry' %> <%= back_url_hidden_field_tag %> -<div class="box"> +<div class="box tabular"> <p><%= f.text_field :issue_id, :size => 6 %> <em><%= h("#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}") if @time_entry.issue %></em></p> <p><%= f.text_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p> <p><%= f.text_field :hours, :size => 6, :required => true %></p> |