To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / timelog / bulk_edit.html.erb @ 1298:4f746d8966dd
History | View | Annotate | Download (1.67 KB)
| 1 | 441:cbce1fd3b1b7 | Chris | <h2><%= l(:label_bulk_edit_selected_time_entries) %></h2> |
|---|---|---|---|
| 2 | |||
| 3 | 1295:622f24f53b42 | Chris | <ul id="bulk-selection"> |
| 4 | <% @time_entries.each do |entry| %>
|
||
| 5 | <%= content_tag 'li',
|
||
| 6 | link_to("#{format_date(entry.spent_on)} - #{entry.project}: #{l(:label_f_hour_plural, :value => entry.hours)}", edit_time_entry_path(entry)) %>
|
||
| 7 | <% end %>
|
||
| 8 | 1115:433d4f72a19b | Chris | </ul>
|
| 9 | 441:cbce1fd3b1b7 | Chris | |
| 10 | 1295:622f24f53b42 | Chris | <%= form_tag(bulk_update_time_entries_path, :id => 'bulk_edit_form') do %>
|
| 11 | 1115:433d4f72a19b | Chris | <%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id)}.join.html_safe %>
|
| 12 | 441:cbce1fd3b1b7 | Chris | <div class="box tabular"> |
| 13 | <div>
|
||
| 14 | <p>
|
||
| 15 | <label><%= l(:field_issue) %></label> |
||
| 16 | <%= text_field :time_entry, :issue_id, :size => 6 %>
|
||
| 17 | </p>
|
||
| 18 | |||
| 19 | <p>
|
||
| 20 | <label><%= l(:field_spent_on) %></label> |
||
| 21 | <%= text_field :time_entry, :spent_on, :size => 10 %><%= calendar_for('time_entry_spent_on') %> |
||
| 22 | </p>
|
||
| 23 | |||
| 24 | <p>
|
||
| 25 | <label><%= l(:field_hours) %></label> |
||
| 26 | <%= text_field :time_entry, :hours, :size => 6 %>
|
||
| 27 | </p>
|
||
| 28 | |||
| 29 | <% if @available_activities.any? %>
|
||
| 30 | <p>
|
||
| 31 | <label><%= l(:field_activity) %></label> |
||
| 32 | 1115:433d4f72a19b | Chris | <%= select_tag('time_entry[activity_id]', content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(@available_activities, :id, :name)) %>
|
| 33 | 441:cbce1fd3b1b7 | Chris | </p>
|
| 34 | <% end %>
|
||
| 35 | |||
| 36 | <p>
|
||
| 37 | <label><%= l(:field_comments) %></label> |
||
| 38 | <%= text_field(:time_entry, :comments, :size => 100) %>
|
||
| 39 | </p>
|
||
| 40 | |||
| 41 | <% @custom_fields.each do |custom_field| %>
|
||
| 42 | <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('time_entry', custom_field, @projects) %></p> |
||
| 43 | <% end %>
|
||
| 44 | |||
| 45 | <%= call_hook(:view_time_entries_bulk_edit_details_bottom, { :time_entries => @time_entries }) %>
|
||
| 46 | </div>
|
||
| 47 | </div>
|
||
| 48 | |||
| 49 | <p><%= submit_tag l(:button_submit) %></p> |
||
| 50 | <% end %> |