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

Update to Redmine 1.2-stable branch (Redmine SVN rev 6000)
author Chris Cannam
date Mon, 06 Jun 2011 14:24:13 +0100
parents 94944d00e43c
children
comparison
equal deleted inserted replaced
245:051f544170fe 441:cbce1fd3b1b7
4 4
5 <%= render_timelog_breadcrumb %> 5 <%= render_timelog_breadcrumb %>
6 6
7 <h2><%= l(:label_spent_time) %></h2> 7 <h2><%= l(:label_spent_time) %></h2>
8 8
9 <% form_remote_tag( :url => {}, :html => {:method => :get, :id => 'query_form'}, :method => :get, :update => 'content' ) do %> 9 <% form_tag({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue}, :method => :get, :id => 'query_form') do %>
10 <%# TOOD: remove the project_id and issue_id hidden fields, that information is
11 already in the URI %>
12 <%= hidden_field_tag('project_id', params[:project_id]) if @project %>
13 <%= hidden_field_tag 'issue_id', params[:issue_id] if @issue %>
14 <%= render :partial => 'date_range' %> 10 <%= render :partial => 'date_range' %>
15 <% end %> 11 <% end %>
16 12
17 <div class="total-hours"> 13 <div class="total-hours">
18 <p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p> 14 <p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>