<%= link_to raw(' Add new repository'), "#", {class: 'btn btn-xs btn-primary', 'data-toggle' => "modal", 'data-target' => '#add-repository-modal'} %>

Repositories

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

<% 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 %> <% @my_repositories.andand.each do |repo| %> <% writable = @repo_writable[repo.uuid] %> <% end %>
Name Read/Write URL
<%= repo[:name] %> <%= writable ? 'writable' : 'read-only' %> <%= writable ? repo.push_url : repo.fetch_url %> <% if writable == 'can_manage' %> <%= link_to "Share", "/repositories/#{repo[:uuid]}#Sharing" %> <% end %>
<% end %>