Merge branch 'master' into 3193-manage-account
[arvados.git] / apps / workbench / app / views / manage_account / _show_manage_repositories.html.erb
1 <div>
2   <p>
3     For more information see <%= link_to raw('setting up SSH access'),
4     "#{Rails.configuration.arvados_docsite}/user/getting_started/ssh-access-unix.html", target: "_blank"%>
5   </p>
6
7   <table class="table repositories-table">
8     <colgroup>
9       <col style="width: 30%" />
10       <col style="width: 15%" />
11       <col style="width: 55%" />
12     </colgroup>
13     <thead>
14       <tr>
15         <th> Name </th>
16         <th> Writable </th>
17         <th> URL </th>
18       </tr>
19     </thead>
20     <tbody>
21       <% @repositories.andand.each do |repo| %>
22         <tr>
23           <td>
24             <%= repo[:name] %>
25           </td>
26           <td>
27             <%= repo[:push_url] != nil %>
28           </td>
29           <td>
30             <%= repo[:fetch_url] %>
31           </td>
32         </tr>
33       <% end %>
34     </tbody>
35   </table>
36 </div>