Merge branch 'master' into 3188-remove-selected-button
[arvados.git] / apps / workbench / app / views / collections / _show_recent.html.erb
1 <%= render partial: "paging", locals: {results: @collections, object: @object} %>
2
3 <div style="padding-right: 1em">
4
5 <%= form_tag do |f| %>
6
7 <table id="collections-index" class="topalign table table-condensed table-fixedlayout"> <!-- table-fixed-header-row -->
8   <colgroup>
9     <col width="10%" />
10     <col width="10%" />
11     <col width="40%" />
12     <col width="10%" />
13     <col width="30%" />
14   </colgroup>
15   <thead>
16     <tr class="contain-align-left">
17       <th></th>
18       <th>uuid</th>
19       <th>contents</th>
20       <th>created at</th>
21       <th>tags</th>
22     </tr>
23   </thead>
24   <tbody>
25     <%= render partial: 'index_tbody' %>
26   </tbody>
27 </table>
28
29 <% end %>
30
31 </div>
32
33 <%= render partial: "paging", locals: {results: @collections, object: @object} %>
34
35 <% content_for :footer_js do %>
36 $(document).on('click', 'form[data-remote] input[type=submit]', function() {
37   $('table#collections-index tbody').fadeTo(200, 0.3);
38   return true;
39 });
40 <% end %>