X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ac30c34ccfacce16cca52e155d2a0e50b0185dc3..c7cf228372bee18d84b14fc4089a758bc157fe76:/apps/workbench/app/views/projects/_index_projects.html.erb diff --git a/apps/workbench/app/views/projects/_index_projects.html.erb b/apps/workbench/app/views/projects/_index_projects.html.erb deleted file mode 100644 index 027dc29b8e..0000000000 --- a/apps/workbench/app/views/projects/_index_projects.html.erb +++ /dev/null @@ -1,32 +0,0 @@ -
- <% tree.each do |projectnode| %> - <% rowtype = projectnode[:object].class %> - <% next if rowtype != Group and !show_root_node %> -
-
- <% if show_root_node and rowtype == String %> - - <%= projectnode[:object] %> - <% elsif show_root_node and rowtype == User %> - <% if projectnode[:object].uuid == current_user.andand.uuid %> - - <%= link_to project_path(id: projectnode[:object].uuid) do %> - Home - <% end %> - <% else %> - - <%= projectnode[:object].friendly_link_name %> - <% end %> - <% elsif rowtype == Group %> - - <%= link_to projectnode[:object] do %> - <%= projectnode[:object].friendly_link_name %> - <% end %> - <% end %> -
- <% if projectnode[:object].respond_to?(:description) and not projectnode[:object].description.blank? %> -
<%= projectnode[:object].description %>
- <% end %> -
- <% end %> -