diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-06 18:23:45 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-06 18:23:45 +0000 |
commit | 2ecca7e4df96cba3fe5ab75997ca179cd62968f8 (patch) | |
tree | 460a880a724dad450f262b175fb54fb89ff5e573 /app/views/timelog | |
parent | c43ef6e7696e1f9684099a7a19d3b71b42ac5a06 (diff) | |
download | redmine-2ecca7e4df96cba3fe5ab75997ca179cd62968f8.tar.gz redmine-2ecca7e4df96cba3fe5ab75997ca179cd62968f8.zip |
Refactor: rename TimelogController#details to #index
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4235 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog')
-rw-r--r-- | app/views/timelog/_date_range.rhtml | 4 | ||||
-rw-r--r-- | app/views/timelog/index.html.erb (renamed from app/views/timelog/details.rhtml) | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/timelog/_date_range.rhtml b/app/views/timelog/_date_range.rhtml index 041e5587f..727de25ed 100644 --- a/app/views/timelog/_date_range.rhtml +++ b/app/views/timelog/_date_range.rhtml @@ -28,8 +28,8 @@ <div class="tabs"> <% url_params = @free_period ? { :from => @from, :to => @to } : { :period => params[:period] } %> <ul> - <li><%= link_to(l(:label_details), url_params.merge({:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue }), - :class => (@controller.action_name == 'details' ? 'selected' : nil)) %></li> + <li><%= link_to(l(:label_details), url_params.merge({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue }), + :class => (@controller.action_name == 'index' ? 'selected' : nil)) %></li> <li><%= link_to(l(:label_report), url_params.merge({:controller => 'time_entry_reports', :action => 'report', :project_id => @project, :issue_id => @issue}), :class => (@controller.action_name == 'report' ? 'selected' : nil)) %></li> </ul> diff --git a/app/views/timelog/details.rhtml b/app/views/timelog/index.html.erb index a17c06e65..a17c06e65 100644 --- a/app/views/timelog/details.rhtml +++ b/app/views/timelog/index.html.erb |