Chris@1464:

<%= l(:label_bulk_edit_selected_time_entries) %>

Chris@1464: Chris@1464: Chris@1464: Chris@1464: <%= form_tag(bulk_update_time_entries_path, :id => 'bulk_edit_form') do %> Chris@1464: <%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id)}.join.html_safe %> Chris@1464:
Chris@1464:
Chris@1464:

Chris@1464: Chris@1464: <%= text_field :time_entry, :issue_id, :size => 6 %> Chris@1464:

Chris@1464: Chris@1464:

Chris@1464: Chris@1464: <%= text_field :time_entry, :spent_on, :size => 10 %><%= calendar_for('time_entry_spent_on') %> Chris@1464:

Chris@1464: Chris@1464:

Chris@1464: Chris@1464: <%= text_field :time_entry, :hours, :size => 6 %> Chris@1464:

Chris@1464: Chris@1464: <% if @available_activities.any? %> Chris@1464:

Chris@1464: Chris@1464: <%= select_tag('time_entry[activity_id]', content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(@available_activities, :id, :name)) %> Chris@1464:

Chris@1464: <% end %> Chris@1464: Chris@1464:

Chris@1464: Chris@1464: <%= text_field(:time_entry, :comments, :size => 100) %> Chris@1464:

Chris@1464: Chris@1464: <% @custom_fields.each do |custom_field| %> Chris@1464:

<%= custom_field_tag_for_bulk_edit('time_entry', custom_field, @projects) %>

Chris@1464: <% end %> Chris@1464: Chris@1464: <%= call_hook(:view_time_entries_bulk_edit_details_bottom, { :time_entries => @time_entries }) %> Chris@1464:
Chris@1464:
Chris@1464: Chris@1464:

<%= submit_tag l(:button_submit) %>

Chris@1464: <% end %>