Fix 2.4.2 upgrade notes formatting refs #19330
[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="pull-right">
6   <div class="form-group">
7     <input type="text" class="form-control filterable-control recent-all-processes-filterable-control"
8            placeholder="Search all processes"
9            data-filterable-target="#all-processes-scroll"
10            value="<%= params[:search] %>" size="40" />
11   </div>
12   <div class="checkbox">
13     <label>
14       <input id="IncludeChildProcs" type="checkbox" class="filterable-control"
15              data-on-value="{&quot;show_children&quot;:true}"
16              data-off-value="{}"
17              data-filterable-target="#all-processes-scroll" />
18       Show child processes
19     </label>
20   </div>
21 </div>
22
23 <div>
24   <div>
25     <div>
26       <table class="table table-condensed table-fixedlayout arv-recent-all-processes">
27         <colgroup>
28           <col width="25%" />
29           <col width="10%" />
30           <col width="20%" />
31           <col width="20%" />
32           <col width="20%" />
33           <col width="5%" />
34         </colgroup>
35
36         <thead>
37           <tr class="contain-align-left">
38             <th>
39               Process
40             </th>
41             <th>
42               Status
43             </th>
44             <th>
45               Owner
46             </th>
47             <th>
48               Created at
49             </th>
50             <th>
51               Output
52             </th>
53             <th>
54             </th>
55           </tr>
56         </thead>
57
58         <tbody data-infinite-scroller="#all-processes-scroll" id="all-processes-scroll"
59                data-infinite-content-params-from-exclude-child-procs="{}"
60                data-infinite-content-href="<%= url_for partial: :all_processes_rows %>" >
61         </tbody>
62       </table>
63     </div>
64   </div>
65 </div>