2012-04-25 21:17:49 +04:00
|
|
|
<%= form_tag({}) do -%>
|
2011-04-04 15:53:55 +04:00
|
|
|
<%= hidden_field_tag 'back_url', url_for(params) %>
|
2011-11-29 22:32:28 +04:00
|
|
|
<div class="autoscroll">
|
2008-02-26 21:15:58 +03:00
|
|
|
<table class="list time-entries">
|
|
|
|
<thead>
|
2008-04-02 02:42:10 +04:00
|
|
|
<tr>
|
2011-04-04 15:53:55 +04:00
|
|
|
<th class="checkbox hide-when-print">
|
2011-09-17 06:54:38 +04:00
|
|
|
<%= link_to image_tag('toggle_check.png'),
|
|
|
|
{},
|
2012-07-22 17:29:26 +04:00
|
|
|
:onclick => 'toggleIssuesSelection(this); return false;',
|
2011-04-04 15:53:55 +04:00
|
|
|
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
|
|
|
|
</th>
|
2008-02-26 21:15:58 +03:00
|
|
|
<%= sort_header_tag('spent_on', :caption => l(:label_date), :default_order => 'desc') %>
|
2008-12-24 13:03:13 +03:00
|
|
|
<%= sort_header_tag('user', :caption => l(:label_member)) %>
|
|
|
|
<%= sort_header_tag('activity', :caption => l(:label_activity)) %>
|
|
|
|
<%= sort_header_tag('project', :caption => l(:label_project)) %>
|
|
|
|
<%= sort_header_tag('issue', :caption => l(:label_issue), :default_order => 'desc') %>
|
2008-02-26 21:15:58 +03:00
|
|
|
<th><%= l(:field_comments) %></th>
|
|
|
|
<%= sort_header_tag('hours', :caption => l(:field_hours)) %>
|
|
|
|
<th></th>
|
2008-04-02 02:42:10 +04:00
|
|
|
</tr>
|
2008-02-26 21:15:58 +03:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% entries.each do |entry| -%>
|
2011-04-04 15:53:55 +04:00
|
|
|
<tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu">
|
|
|
|
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td>
|
2008-02-26 21:15:58 +03:00
|
|
|
<td class="spent_on"><%= format_date(entry.spent_on) %></td>
|
2011-08-02 17:14:38 +04:00
|
|
|
<td class="user"><%= link_to_user(entry.user) %></td>
|
2008-02-27 23:50:19 +03:00
|
|
|
<td class="activity"><%=h entry.activity %></td>
|
2011-08-02 17:14:38 +04:00
|
|
|
<td class="project"><%= link_to_project(entry.project) %></td>
|
2008-02-26 21:15:58 +03:00
|
|
|
<td class="subject">
|
2008-02-27 23:50:19 +03:00
|
|
|
<% if entry.issue -%>
|
2009-11-14 17:10:09 +03:00
|
|
|
<%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%>
|
2008-02-27 23:50:19 +03:00
|
|
|
<% end -%>
|
2008-02-26 21:15:58 +03:00
|
|
|
</td>
|
|
|
|
<td class="comments"><%=h entry.comments %></td>
|
2008-02-27 23:50:19 +03:00
|
|
|
<td class="hours"><%= html_hours("%.2f" % entry.hours) %></td>
|
2008-03-15 00:17:09 +03:00
|
|
|
<td align="center">
|
|
|
|
<% if entry.editable_by?(User.current) -%>
|
2012-07-07 18:39:29 +04:00
|
|
|
<%= link_to image_tag('edit.png'), edit_time_entry_path(entry),
|
2008-03-15 00:17:09 +03:00
|
|
|
:title => l(:button_edit) %>
|
2012-07-07 18:39:29 +04:00
|
|
|
<%= link_to image_tag('delete.png'), time_entry_path(entry),
|
2012-07-07 18:36:49 +04:00
|
|
|
:data => {:confirm => l(:text_are_you_sure)},
|
2010-10-12 19:55:21 +04:00
|
|
|
:method => :delete,
|
2008-03-15 00:17:09 +03:00
|
|
|
:title => l(:button_delete) %>
|
|
|
|
<% end -%>
|
|
|
|
</td>
|
2008-02-26 21:15:58 +03:00
|
|
|
</tr>
|
|
|
|
<% end -%>
|
2008-04-02 02:42:10 +04:00
|
|
|
</tbody>
|
2008-02-26 21:15:58 +03:00
|
|
|
</table>
|
2011-11-29 22:32:28 +04:00
|
|
|
</div>
|
2011-04-04 15:53:55 +04:00
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<%= context_menu time_entries_context_menu_path %>
|