Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
66
app/views/timelog/bulk_edit.html.erb
Normal file
66
app/views/timelog/bulk_edit.html.erb
Normal file
|
@ -0,0 +1,66 @@
|
|||
<h2><%= l(:label_bulk_edit_selected_time_entries) %></h2>
|
||||
|
||||
<% if @unsaved_time_entries.present? %>
|
||||
<div id="errorExplanation">
|
||||
<span>
|
||||
<%= l(:notice_failed_to_save_time_entries,
|
||||
:count => @unsaved_time_entries.size,
|
||||
:total => @saved_time_entries.size,
|
||||
:ids => @unsaved_time_entries.map {|i| "##{i.id}"}.join(', ')) %>
|
||||
</span>
|
||||
<ul>
|
||||
<% bulk_edit_error_messages(@unsaved_time_entries).each do |message| %>
|
||||
<li><%= message %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<ul id="bulk-selection">
|
||||
<% @time_entries.each do |entry| %>
|
||||
<%= content_tag 'li',
|
||||
link_to("#{format_date(entry.spent_on)} - #{entry.project}: #{l(:label_f_hour_plural, :value => entry.hours)}", edit_time_entry_path(entry)) %>
|
||||
<% end %>
|
||||
</ul>
|
||||
|
||||
<%= form_tag(bulk_update_time_entries_path, :id => 'bulk_edit_form') do %>
|
||||
<%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join.html_safe %>
|
||||
<div class="box tabular">
|
||||
<div>
|
||||
<p>
|
||||
<label for="time_entry_issue_id"><%= l(:field_issue) %></label>
|
||||
<%= text_field :time_entry, :issue_id, :size => 6 %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label for="time_entry_spent_on"><%= l(:field_spent_on) %></label>
|
||||
<%= date_field :time_entry, :spent_on, :size => 10 %><%= calendar_for('time_entry_spent_on') %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label for="time_entry_hours"><%= l(:field_hours) %></label>
|
||||
<%= text_field :time_entry, :hours, :size => 6 %>
|
||||
</p>
|
||||
|
||||
<% if @available_activities.any? %>
|
||||
<p>
|
||||
<label for="time_entry_activity_id"><%= l(:field_activity) %></label>
|
||||
<%= select_tag('time_entry[activity_id]', content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(@available_activities, :id, :name)) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<p>
|
||||
<label for="time_entry_comments"><%= l(:field_comments) %></label>
|
||||
<%= text_field(:time_entry, :comments, :size => 100) %>
|
||||
</p>
|
||||
|
||||
<% @custom_fields.each do |custom_field| %>
|
||||
<p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('time_entry', custom_field, @time_entries) %></p>
|
||||
<% end %>
|
||||
|
||||
<%= call_hook(:view_time_entries_bulk_edit_details_bottom, { :time_entries => @time_entries }) %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p><%= submit_tag l(:button_submit) %></p>
|
||||
<% end %>
|
Loading…
Add table
Add a link
Reference in a new issue