Merge branch '3193-manage-account' of git.curoverse.com:arvados into 3193-manage...
[arvados.git] / apps / workbench / app / views / users / _manage_repositories.html.erb
1 <div>
2   <p>
3     For more information see <%= link_to raw('Writing a pipeline'),
4     "#{Rails.configuration.arvados_docsite}/user/tutorials/tutorial-firstscript.html", target: "_blank"%>
5   </p>
6
7   <table class="table repositories-table">
8     <colgroup>
9       <col style="width: 30%" />
10       <col style="width: 10%" />
11       <col style="width: 60%" />
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       <% @my_repositories.andand.each do |repo| %>
22         <tr>
23           <td style="word-break:break-all;">
24             <%= repo[:name] %>
25           </td>
26           <td>
27             <%= repo[:push_url] != nil %>
28           </td>
29           <td style="word-break:break-all;">
30             <code><%= repo[:fetch_url] %></code>
31           </td>
32         </tr>
33       <% end %>
34     </tbody>
35   </table>
36 </div>