diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-31 16:34:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-31 16:34:54 +0000 |
commit | 696d21f8c8c88d487df46112082fcb1d9b5f6ec2 (patch) | |
tree | 5a4addd08ae94b062f042ae4de3bb1f18fce868e /app/views/timelog | |
parent | dbad26c87db8247c0d635c993981d4277e165978 (diff) | |
download | redmine-696d21f8c8c88d487df46112082fcb1d9b5f6ec2.tar.gz redmine-696d21f8c8c88d487df46112082fcb1d9b5f6ec2.zip |
Adds cross-project time reports support (#994).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1778 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog')
-rw-r--r-- | app/views/timelog/details.rhtml | 6 | ||||
-rw-r--r-- | app/views/timelog/report.rhtml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/timelog/details.rhtml b/app/views/timelog/details.rhtml index f111cbfc0..db62fae66 100644 --- a/app/views/timelog/details.rhtml +++ b/app/views/timelog/details.rhtml @@ -2,11 +2,9 @@ <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %>
</div>
-<h2><%= l(:label_spent_time) %></h2>
+<%= render_timelog_breadcrumb %>
-<% if @issue %>
-<h3><%= link_to(@project.name, {:action => 'details', :project_id => @project}) %> / <%= link_to_issue(@issue) %></h3>
-<% end %>
+<h2><%= l(:label_spent_time) %></h2>
<% form_remote_tag( :url => {}, :method => :get, :update => 'content' ) do %>
<%= hidden_field_tag 'project_id', params[:project_id] %>
diff --git a/app/views/timelog/report.rhtml b/app/views/timelog/report.rhtml index 97251bc11..eea0d0fc7 100644 --- a/app/views/timelog/report.rhtml +++ b/app/views/timelog/report.rhtml @@ -2,6 +2,8 @@ <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %> </div> +<%= render_timelog_breadcrumb %> + <h2><%= l(:label_spent_time) %></h2> <% form_remote_tag(:url => {}, :update => 'content') do %> |