8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / trash_items / _show_recent_trash.html.erb
1 <div class="container selection-action-container" style="width: 100%">
2   <div class="col-md-2 pull-left">
3     <div class="btn-group btn-group-sm">
4       <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">Selection... <span class="caret"></span></button>
5       <ul class="dropdown-menu" role="menu">
6         <li><%= link_to "Un-trash selected items", '#',
7                 method: :post,
8                 remote: true,
9                 'id' => 'untrash_selected_items',
10                 'data-href' => untrash_items_trash_items_path,
11                 'data-selection-param-name' => 'selection[]',
12                 'data-selection-action' => 'untrash-selected-items',
13                 'data-toggle' => 'dropdown'
14           %></li>
15       </ul>
16     </div>
17   </div>
18   <div class="col-md-4 pull-right">
19     <input type="text" class="form-control filterable-control recent-trash-items"
20            placeholder="Search trash"
21            data-filterable-target="#recent-trash-items"
22            value="<%= params[:search] %>" />
23   </div>
24
25   <div>
26     <table id="trash-index" class="topalign table table-condensed table-fixedlayout">
27       <colgroup>
28         <col width="5%" />
29         <col width="20%" />
30         <col width="15%" />
31         <col width="15%" />
32         <col width="10%" />
33         <col width="30%" />
34         <col width="5%" />
35       </colgroup>
36
37       <thead>
38         <tr class="contain-align-left">
39           <th></th>
40           <th>Name</th>
41           <th>Trashed at</th>
42           <th title="After this time, no longer available to be recovered from Trash">Permanently<br/>Deleted At</th>
43           <th>Owner</th>
44           <th>Contents</th>
45           <th></th>
46         </tr>
47       </thead>
48
49       <tbody data-infinite-scroller="#recent-trash-items" id="recent-trash-items"
50         data-infinite-content-href="<%= url_for partial: :trash_rows %>" >
51       </tbody>
52     </table>
53   </div>
54 </div>