X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/41d206a19a04a87e3bb54ed9a41bb7a1f9cf966f..922da69f42998b29355796e20e4dee0079d4113e:/apps/workbench/app/views/users/_manage_repositories.html.erb diff --git a/apps/workbench/app/views/users/_manage_repositories.html.erb b/apps/workbench/app/views/users/_manage_repositories.html.erb index 994fb259b7..4f22ae9cd3 100644 --- a/apps/workbench/app/views/users/_manage_repositories.html.erb +++ b/apps/workbench/app/views/users/_manage_repositories.html.erb @@ -1,36 +1,40 @@

- For more information see <%= link_to raw('Setting up SSH access'), - "#{Rails.configuration.arvados_docsite}/user/getting_started/ssh-access-unix.html", target: "_blank"%> + For more information see <%= link_to raw('Writing a pipeline'), + "#{Rails.configuration.arvados_docsite}/user/tutorials/tutorial-firstscript.html", target: "_blank"%>.

- - - - - - - - - - - - - - - <% @my_repositories.andand.each do |repo| %> + <% if !@my_repositories.any? %> + You do not seem to have access to any repositories. If you would like to request access, please contact your system admin. + <% else %> +
Name Writable URL
+ + + + + + - - - + + + - <% end %> - -
- <%= repo[:name] %> - - <%= repo[:push_url] != nil %> - - <%= repo[:fetch_url] %> - Name Read/Write URL
+ + + <% @my_repositories.andand.each do |repo| %> + + + <%= repo[:name] %> + + + <%= repo[:push_url] ? 'writable' : 'read-only' %> + + + <%= repo[:fetch_url] %> + + + <% end %> + + + <% end %>