To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / timelog / .svn / text-base / index.html.erb.svn-base @ 441:cbce1fd3b1b7

History | View | Annotate | Download (1.18 KB)

1 37:94944d00e43c chris
<div class="contextual">
2
<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'new', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time-add' %>
3
</div>
4
5
<%= render_timelog_breadcrumb %>
6
7
<h2><%= l(:label_spent_time) %></h2>
8
9 441:cbce1fd3b1b7 Chris
<% form_tag({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue}, :method => :get, :id => 'query_form') do %>
10 37:94944d00e43c chris
<%= render :partial => 'date_range' %>
11
<% end %>
12
13
<div class="total-hours">
14
<p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>
15
</div>
16
17
<% unless @entries.empty? %>
18
<%= render :partial => 'list', :locals => { :entries => @entries }%>
19
<p class="pagination"><%= pagination_links_full @entry_pages, @entry_count %></p>
20
21
<% other_formats_links do |f| %>
22
	<%= f.link_to 'Atom', :url => params.merge({:issue_id => @issue, :key => User.current.rss_key}) %>
23
	<%= f.link_to 'CSV', :url => params %>
24
<% end %>
25
<% end %>
26
27
<% html_title l(:label_spent_time), l(:label_details) %>
28
29
<% content_for :header_tags do %>
30
    <%= auto_discovery_link_tag(:atom, {:issue_id => @issue, :format => 'atom', :key => User.current.rss_key}, :title => l(:label_spent_time)) %>
31
<% end %>