<%= 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(@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)) %>
<%= l(:field_comments) %> |
<%= sort_header_tag('hours', :caption => l(:field_hours)) %>
|
<% @entries.each do |entry| %>
">
<%= format_date(entry.spent_on) %> |
<%= entry.user.name %> |
<%= entry.activity.name %> |
<% if entry.issue %>
<%= link_to_issue entry.issue %>
<%= render_issue_tooltip 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 %> |
<% end %>
<%= l(:label_export_to) %>
<%= link_to 'CSV', params.update(:export => 'csv'), :class => 'icon icon-csv' %>
<% end %>