##// END OF EJS Templates
Change British English version 'field_effective_date' (#14680, #22315)...
Change British English version 'field_effective_date' (#14680, #22315) en.yml has already changed by r15377 (#14680). git-svn-id: http://svn.redmine.org/redmine/trunk@15406 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14997:ed50d42210ea
r15024:979b5f15db88
Show More
_timelog.html.erb
59 lines | 2.1 KiB | text/plain | TextLexer
/ app / views / my / blocks / _timelog.html.erb
Jean-Philippe Lang
Adds a link on "My Page" to view all my spent time (#13157)....
r11629 <h3>
<%= link_to l(:label_spent_time), time_entries_path(:user_id => 'me') %>
(<%= l(:label_last_n_days, 7) %>)
</h3>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/blocks/_timelog.html.erb...
r7100 <%
Jean-Philippe Lang
Adds helpers for retrieving my page data....
r10695 entries = timelog_items
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 entries_by_day = entries.group_by(&:spent_on)
%>
Jean-Philippe Lang
Adds a link to /time_entries/new from My Page Spent Time block (#17955)....
r13059 <% if User.current.allowed_to?(:log_time, nil, :global => true) %>
<div class="contextual">
<%= link_to l(:button_log_time), new_time_entry_path, :class => "icon icon-add" %>
</div>
<% end %>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <div class="total-hours">
Jean-Philippe Lang
Adds label_total_time string (#13337)....
r11352 <p><%= l(:label_total_time) %>: <%= html_hours("%.2f" % entries.sum(&:hours).to_f) %></p>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 </div>
<% if entries.any? %>
<table class="list time-entries">
Jean-Philippe Lang
Adds missing thead tags (#5440)....
r3620 <thead><tr>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <th><%= l(:label_activity) %></th>
<th><%= l(:label_project) %></th>
<th><%= l(:field_comments) %></th>
<th><%= l(:field_hours) %></th>
<th></th>
Jean-Philippe Lang
Adds missing thead tags (#5440)....
r3620 </tr></thead>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <tbody>
<% entries_by_day.keys.sort.reverse.each do |day| %>
<tr class="odd">
Jean-Philippe Lang
Replace Date.today with User.current.today (#22320)....
r14997 <td><strong><%= day == User.current.today ? l(:label_today).titleize : format_date(day) %></strong></td>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <td colspan="2"></td>
<td class="hours"><em><%= html_hours("%.2f" % entries_by_day[day].sum(&:hours).to_f) %></em></td>
<td></td>
</tr>
<% entries_by_day[day].each do |entry| -%>
<tr class="time-entry" style="border-bottom: 1px solid #f5f5f5;">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="activity"><%= entry.activity %></td>
<td class="subject"><%= entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td>
<td class="comments"><%= entry.comments %></td>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="buttons">
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <% if entry.editable_by?(@user) -%>
Jean-Philippe Lang
Improve accessibility for icon-only links by adding hidden text (#21805)....
r14889 <%= link_to l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => entry},
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 :title => l(:button_edit),
:class => 'icon-only icon-edit' %>
Jean-Philippe Lang
Improve accessibility for icon-only links by adding hidden text (#21805)....
r14889 <%= link_to l(:button_delete), {:controller => 'timelog', :action => 'destroy', :id => entry},
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 :data => {:confirm => l(:text_are_you_sure)}, :method => :delete,
:title => l(:button_delete),
:class => 'icon-only icon-del' %>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 <% end -%>
</td>
</tr>
<% end -%>
<% end -%>
Jean-Philippe Lang
Typos/fixes in views (#2654)....
r2356 </tbody>
Jean-Philippe Lang
Add a time tracking block for 'My page' (#615)....
r1245 </table>
<% end %>