% form_tag({}) do -%> <% if Redmine::VERSION::MAJOR >= 1 && Redmine::VERSION::MINOR >= 3 %> <%= hidden_field_tag 'back_url', url_for(params) %> <% end %>
<%= l(:label_time) %> | <%= sort_header_tag('user', :caption => l(:label_member)) %> <%= sort_header_tag('activity', :caption => l(:label_activity)) %> <%= sort_header_tag('project', :caption => l(:label_project)) %> <%= sort_header_tag('issue', :caption => l(:label_issue), :default_order => 'desc') %><%= l(:field_comments) %> | <%= sort_header_tag('hours', :caption => l(:field_hours)) %>|||||||
---|---|---|---|---|---|---|---|---|
<%= format_date(entry.spent_on) %> | <% if entry.start_time.present? && entry.end_time.present? -%> <%=h entry.start_time.strftime('%H:%M') %> - <%=h entry.end_time.strftime('%H:%M') %> <% end -%> | <%= link_to_user(entry.user) %> | <%=h entry.activity %> | <%= link_to_project(entry.project) %> | <% if entry.issue -%> <%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%> <% end -%> | <%=h entry.comments %> | <%= html_hours("%.2f" % entry.hours) %> | <% if entry.editable_by?(User.current) -%> <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry, :project_id => nil}, :title => l(:button_edit) %> <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry, :project_id => nil}, :confirm => l(:text_are_you_sure), :method => (Redmine::VERSION::MAJOR >= 1 && Redmine::VERSION::MINOR >= 3) ? :delete : :post, # FIXME :title => l(:button_delete) %> <% end -%> |