d52229388ed76d1867732f124a35dc65b25010f7
[arvados.git] / apps / workbench / app / views / repositories / _show_repositories.html.erb
1 <%= render partial: "add_repository_modal" %>
2
3 <div class="container" style="width: 100%">
4   <div class="pull-right">
5     <%= link_to raw('<i class="fa fa-plus"></i> Add new repository'), "#",
6                     {class: 'btn btn-xs btn-primary', 'data-toggle' => "modal",
7                      'data-target' => '#add-repository-modal'}  %>
8   </div>
9
10   <div>
11     <table class="table table-condensed table-fixedlayout repositories-table">
12       <colgroup>
13         <col style="width: 5%" />
14         <col style="width: 30%" />
15         <col style="width: 60%" />
16         <col style="width: 5%" />
17       </colgroup>
18       <thead>
19         <tr>
20           <th></th>
21           <th> Name </th>
22           <th> URL </th>
23           <th></th>
24         </tr>
25       </thead>
26
27       <tbody data-infinite-scroller="#repositories-rows" id="repositories-rows"
28         data-infinite-content-href="<%= url_for partial: :repositories_rows %>" >
29       </tbody>
30     </table>
31   </div>
32 </div>