Mercurial > hg > soundsoftware-site
diff .svn/pristine/37/3751ea61d6afde6d3676ff52f3635b315c4f2a51.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/37/3751ea61d6afde6d3676ff52f3635b315c4f2a51.svn-base Tue Jan 14 14:37:42 2014 +0000 @@ -0,0 +1,41 @@ +<%= form_tag({}) do -%> +<%= hidden_field_tag 'back_url', url_for(params) %> +<div class="autoscroll"> +<table class="list time-entries"> +<thead> + <tr> + <th class="checkbox hide-when-print"> + <%= link_to image_tag('toggle_check.png'), + {}, + :onclick => 'toggleIssuesSelection(this); return false;', + :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> + </th> + <% @query.inline_columns.each do |column| %> + <%= column_header(column) %> + <% end %> + <th></th> + </tr> +</thead> +<tbody> +<% entries.each do |entry| -%> + <tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> + <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> + <%= raw @query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, entry)}</td>"}.join %> + <td class="buttons"> + <% if entry.editable_by?(User.current) -%> + <%= link_to image_tag('edit.png'), edit_time_entry_path(entry), + :title => l(:button_edit) %> + <%= link_to image_tag('delete.png'), time_entry_path(entry), + :data => {:confirm => l(:text_are_you_sure)}, + :method => :delete, + :title => l(:button_delete) %> + <% end -%> + </td> + </tr> +<% end -%> +</tbody> +</table> +</div> +<% end -%> + +<%= context_menu time_entries_context_menu_path %>