Chris@909:

<%= l(:label_bulk_edit_selected_time_entries) %>

Chris@909: Chris@909: Chris@909: Chris@909: <% form_tag(:action => 'bulk_update') do %> Chris@909: <%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id)}.join %> Chris@909:
Chris@909:
Chris@909: <%= l(:label_change_properties) %> Chris@909:
Chris@909:

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

Chris@909: Chris@909:

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

Chris@909: Chris@909:

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

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

Chris@909: Chris@909: <%= select_tag('time_entry[activity_id]', "" + options_from_collection_for_select(@available_activities, :id, :name)) %> Chris@909:

Chris@909: <% end %> Chris@909: Chris@909:

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

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

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

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

<%= submit_tag l(:button_submit) %>

Chris@909: <% end %>