Mercurial > hg > soundsoftware-site
view app/views/timelog/index.html.erb @ 871:d6c20f61a130 feature_128
Close obsolete branch feature_128
author | Chris Cannam |
---|---|
date | Sat, 02 Apr 2011 12:22:46 +0100 |
parents | 94944d00e43c |
children | cbce1fd3b1b7 |
line wrap: on
line source
<div class="contextual"> <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'new', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time-add' %> </div> <%= render_timelog_breadcrumb %> <h2><%= l(:label_spent_time) %></h2> <% form_remote_tag( :url => {}, :html => {:method => :get, :id => 'query_form'}, :method => :get, :update => 'content' ) do %> <%# TOOD: remove the project_id and issue_id hidden fields, that information is already in the URI %> <%= hidden_field_tag('project_id', params[:project_id]) if @project %> <%= hidden_field_tag 'issue_id', params[:issue_id] if @issue %> <%= 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| %> <%= f.link_to 'Atom', :url => params.merge({:issue_id => @issue, :key => User.current.rss_key}) %> <%= f.link_to 'CSV', :url => params %> <% 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 %>