Merge branch '8784-dir-listings'
[arvados.git] / apps / workbench / app / views / work_units / _show_all_processes.html.erb
1 <%# Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 %>
4
5 <div class="container" style="width: 100%">
6   <div class="row">
7     <div class="pull-right">
8       <input type="text" class="form-control filterable-control recent-all-processes-filterable-control"
9              placeholder="Search all processes"
10              data-filterable-target="#all-processes-scroll"
11              value="<%= params[:search] %>">
12       </input>
13     </div>
14   </div>
15   <div>
16     <div>
17       <table class="table table-condensed table-fixedlayout arv-recent-all-processes">
18         <colgroup>
19           <col width="25%" />
20           <col width="10%" />
21           <col width="20%" />
22           <col width="20%" />
23           <col width="20%" />
24           <col width="5%" />
25         </colgroup>
26
27         <thead>
28           <tr class="contain-align-left">
29             <th>
30               Process
31             </th>
32             <th>
33               Status
34             </th>
35             <th>
36               Owner
37             </th>
38             <th>
39               Created at
40             </th>
41             <th>
42               Output
43             </th>
44             <th>
45             </th>
46           </tr>
47         </thead>
48
49         <tbody data-infinite-scroller="#all-processes-scroll" id="all-processes-scroll"
50                data-infinite-content-href="<%= url_for partial: :all_processes_rows %>" >
51         </tbody>
52       </table>
53     </div>
54   </div>
55 </div>