5183: Disable animation on modal. (It seems to cause intermittent test failures....
[arvados.git] / apps / workbench / app / views / users / _manage_repositories.html.erb
index 1956016d9fce86001b080da4cf2db67608463eff..83ec30a8146f9311a03f817568ccd46f14d05075 100644 (file)
@@ -18,6 +18,7 @@
           <th> Name </th>
           <th> Read/Write </th>
           <th> URL </th>
+          <th> </th>
         </tr>
       </thead>
       <tbody>
           <% writable = @repo_writable[repo.uuid] %>
           <tr>
             <td style="word-break:break-all;">
-              <% if writable == 'can_manage' %>
-                <%= link_to raw("#{repo[:name]}"), "/repositories/#{repo[:uuid]}" %>
-              <% else %>
-                <%= repo[:name] %>
-              <% end %>
+              <%= repo[:name] %>
             </td>
             <td>
               <%= writable ? 'writable' : 'read-only' %>
             <td style="word-break:break-all;">
               <code><%= writable ? repo[:push_url] : repo[:fetch_url] %></code>
             </td>
+            <td>
+              <% if writable == 'can_manage' %>
+                <%= link_to "Share", "/repositories/#{repo[:uuid]}#Sharing" %>
+              <% end %>
+            </td>
           </tr>
         <% end %>
       </tbody>