details.rhtml
35 lines
| 1.4 KiB
| text/html+ruby
|
RhtmlLexer
|
r365 | <div class="contextual"> | ||
<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %> | ||||
</div> | ||||
|
r1777 | <%= render_timelog_breadcrumb %> | ||
|
r365 | |||
|
r1777 | <h2><%= l(:label_spent_time) %></h2> | ||
|
r365 | |||
|
r2315 | <% form_remote_tag( :url => {}, :html => {:method => :get}, :method => :get, :update => 'content' ) do %> | ||
<%# TOOD: remove the project_id and issue_id hidden fields, that information is | ||||
already in the URI %> | ||||
|
r1159 | <%= hidden_field_tag 'project_id', params[:project_id] %> | ||
<%= hidden_field_tag 'issue_id', params[:issue_id] if @issue %> | ||||
|
r1303 | <%= render :partial => 'date_range' %> | ||
|
r365 | <% end %> | ||
|
r1159 | <div class="total-hours"> | ||
<p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p> | ||||
</div> | ||||
<% unless @entries.empty? %> | ||||
<%= render :partial => 'list', :locals => { :entries => @entries }%> | ||||
<p class="pagination"><%= pagination_links_full @entry_pages, @entry_count %></p> | ||||
|
r1171 | |||
|
r2331 | <% other_formats_links do |f| %> | ||
<%= f.link_to 'Atom', :url => params.merge({:issue_id => @issue, :key => User.current.rss_key}) %> | ||||
<%= f.link_to 'CSV', :url => params %> | ||||
<% end %> | ||||
|
r1159 | <% end %> | ||
|
r1304 | |||
<% html_title l(:label_spent_time), l(:label_details) %> | ||||
|
r1546 | |||
<% 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 %> | ||||