OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/work_packages/_time_entry.html.erb

40 lines
1014 B

<%#-- copyright
OpenProject is a project management system.
Copyright (C) 2012-2013 the OpenProject Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 3.
See doc/COPYRIGHT.rdoc for more details.
++#%>
<%= f.fields_for :time_entry,
time_entry,
{ :builder => TabularFormBuilder,
:lang => current_language} do |fields| %>
<div class="splitcontentleft">
<p>
<%= fields.text_field :hours,
:label => :label_spent_time %>
<%= TimeEntry.human_attribute_name(:hours) %>
</p>
</div>
<div class="splitcontentright">
<p>
<%= fields.select :activity_id, activity_collection_for_select_options %>
</p>
</div>
<p>
<%= fields.text_field :comments %>
</p>
<% time_entry.custom_field_values.each do |value| %>
<p>
<%= custom_field_tag_with_label :time_entry, value %>
</p>
<% end %>
<% end %>