summaryrefslogtreecommitdiffstats
path: root/app/views/timelog/details.rhtml
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-10-06 18:23:45 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-10-06 18:23:45 +0000
commit2ecca7e4df96cba3fe5ab75997ca179cd62968f8 (patch)
tree460a880a724dad450f262b175fb54fb89ff5e573 /app/views/timelog/details.rhtml
parentc43ef6e7696e1f9684099a7a19d3b71b42ac5a06 (diff)
downloadredmine-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/details.rhtml')
-rw-r--r--app/views/timelog/details.rhtml35
1 files changed, 0 insertions, 35 deletions
diff --git a/app/views/timelog/details.rhtml b/app/views/timelog/details.rhtml
deleted file mode 100644
index a17c06e65..000000000
--- a/app/views/timelog/details.rhtml
+++ /dev/null
@@ -1,35 +0,0 @@
-<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-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 %>