##// END OF EJS Templates
route: use constraints for repositories ":format => 'raw'" and :action...
route: use constraints for repositories ":format => 'raw'" and :action git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9547 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r9365:8047a8cd28d7
Show More
index.html.erb
33 lines | 1.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Adds missing native eol properties....
r2781 <div class="contextual">
Jean-Philippe Lang
Enable global time logging at /time_entries/new (#10020)....
r8571 <%= link_to l(:button_log_time),
{:controller => 'timelog', :action => 'new', :project_id => @project, :issue_id => @issue},
:class => 'icon icon-time-add' if User.current.allowed_to?(:log_time, @project, :global => true) %>
Jean-Philippe Lang
Adds missing native eol properties....
r2781 </div>
<%= render_timelog_breadcrumb %>
<h2><%= l(:label_spent_time) %></h2>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue}, :method => :get, :id => 'query_form') do %>
Jean-Philippe Lang
Adds missing native eol properties....
r2781 <%= 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| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/timelog/index.html.erb...
r7195 <%= f.link_to 'Atom', :url => params.merge({:issue_id => @issue, :key => User.current.rss_key}) %>
<%= f.link_to 'CSV', :url => params %>
Jean-Philippe Lang
Adds missing native eol properties....
r2781 <% 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 %>