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