Merge branch 'master' into 3296-user-profile
[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="8%" />
10     <col width="10%" />
11     <col width="34%" />
12     <col width="11%" />
13     <col width="12%" />
14     <col width="29%" />
15   </colgroup>
16   <thead>
17     <tr class="contain-align-left">
18       <th></th>
19       <th>uuid</th>
20       <th>contents</th>
21       <th>created at</th>
22       <th>storage</th>
23       <th>tags</th>
24     </tr>
25   </thead>
26   <tbody>
27     <%= render partial: 'index_tbody' %>
28   </tbody>
29 </table>
30
31 <% end %>
32
33 </div>
34
35 <%= render partial: "paging", locals: {results: @collections, object: @object} %>
36
37 <% content_for :footer_js do %>
38 $(document).on('click', 'form[data-remote] input[type=submit]', function() {
39   $('table#collections-index tbody').fadeTo(200, 0.3);
40   return true;
41 });
42 <% end %>