2009-09-20 18:06:57 +04:00
|
|
|
<div class="contextual">
|
2012-01-21 18:26:51 +04:00
|
|
|
<%= link_to l(:button_log_time),
|
|
|
|
{:controller => 'timelog', :action => 'new', :project_id => @project, :issue_id => @issue},
|
|
|
|
:class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project, :global => true) %>
|
2009-09-20 18:06:57 +04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= render_timelog_breadcrumb %>
|
|
|
|
|
|
|
|
<h2><%= l(:label_spent_time) %></h2>
|
|
|
|
|
2011-04-03 15:55:24 +04:00
|
|
|
<% form_tag({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue}, :method => :get, :id => 'query_form') do %>
|
2009-09-20 18:06:57 +04:00
|
|
|
<%= render :partial => 'date_range' %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="total-hours">
|
|
|
|
<p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% unless @entries.empty? %>
|
|
|
|
<%= render :partial => 'list', :locals => { :entries => @entries }%>
|
|
|
|
<p class="pagination"><%= pagination_links_full @entry_pages, @entry_count %></p>
|
|
|
|
|
|
|
|
<% other_formats_links do |f| %>
|
2011-09-17 12:41:35 +04:00
|
|
|
<%= f.link_to 'Atom', :url => params.merge({:issue_id => @issue, :key => User.current.rss_key}) %>
|
|
|
|
<%= f.link_to 'CSV', :url => params %>
|
2009-09-20 18:06:57 +04:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% html_title l(:label_spent_time), l(:label_details) %>
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= auto_discovery_link_tag(:atom, {:issue_id => @issue, :format => 'atom', :key => User.current.rss_key}, :title => l(:label_spent_time)) %>
|
|
|
|
<% end %>
|