X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/514ba2679d20b269f4ab37415d0217589477e7f6..a942e37250873d383bd885ba0dba70c63b3c073d:/apps/workbench/app/views/users/_manage_repositories.html.erb?ds=sidebyside diff --git a/apps/workbench/app/views/users/_manage_repositories.html.erb b/apps/workbench/app/views/users/_manage_repositories.html.erb index 11d25805d9..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 %>