##// END OF EJS Templates
Adds an helper to render other formats download links....
Adds an helper to render other formats download links. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2333 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2331:f1aa0df32666
r2331:f1aa0df32666
Show More
details.rhtml
35 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Simple time tracking functionality added. Time can be logged at issue or project level....
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>
Jean-Philippe Lang
Adds cross-project time reports support (#994)....
r1777 <%= render_timelog_breadcrumb %>
Jean-Philippe Lang
Simple time tracking functionality added. Time can be logged at issue or project level....
r365
Jean-Philippe Lang
Adds cross-project time reports support (#994)....
r1777 <h2><%= l(:label_spent_time) %></h2>
Jean-Philippe Lang
Simple time tracking functionality added. Time can be logged at issue or project level....
r365
Eric Davis
Converted routing and urls to follow the Rails REST convention....
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 %>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <%= hidden_field_tag 'project_id', params[:project_id] %>
<%= hidden_field_tag 'issue_id', params[:issue_id] if @issue %>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 <%= render :partial => 'date_range' %>
Jean-Philippe Lang
Simple time tracking functionality added. Time can be logged at issue or project level....
r365 <% end %>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
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>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171
Jean-Philippe Lang
Adds an helper to render other formats download links....
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 %>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <% end %>
Jean-Philippe Lang
Time report can be done at issue level (closes #970) + timelog views xhtml validation....
r1304
<% html_title l(:label_spent_time), l(:label_details) %>
Jean-Philippe Lang
Adds atom feed on time entries details (#1479)....
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 %>