<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %>

<%= l(:label_spent_time) %>

<%= link_to(@project.name, {:action => 'details', :project_id => @project}) if @project %> <%= "/ " + link_to("#{@issue.tracker.name} ##{@issue.id}", {:action => 'details', :issue_id => @issue }) + ": #{h(@issue.subject)}" if @issue %>

<%= l(:label_total) %>: <%= lwr(:label_f_hour, @total_hours) %>

<% unless @entries.empty? %> <%= sort_header_tag('spent_on', :caption => l(:label_date)) %> <%= sort_header_tag('user_id', :caption => l(:label_member)) %> <%= sort_header_tag('activity_id', :caption => l(:label_activity)) %> <%= sort_header_tag('issue_id', :caption => l(:label_issue)) %> <%= sort_header_tag('hours', :caption => l(:field_hours)) %> <% @entries.each do |entry| %> "> <% end %>
<%= l(:field_comments) %>
<%= format_date(entry.spent_on) %> <%= entry.user.name %> <%= entry.activity.name %> <% if entry.issue %>
<%= link_to "#{entry.issue.tracker.name} ##{entry.issue.id}", {:action => 'details', :issue_id => entry.issue } %> <%= render :partial => "issues/tooltip", :locals => { :issue => entry.issue }%>
<% end %>
<%=h entry.comments %> <%= entry.hours %> <%= link_to_if_authorized(l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => entry}, :class => "icon icon-edit") if entry.user_id == @owner_id %>
<%= l(:label_export_to) %> <%= link_to 'CSV', params.update(:export => 'csv'), :class => 'icon icon-csv' %>
<% end %>