20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / application / index.html.erb
diff --git a/apps/workbench/app/views/application/index.html.erb b/apps/workbench/app/views/application/index.html.erb
deleted file mode 100644 (file)
index 3e2a608..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-<% content_for :page_title do %>
-<%= controller.controller_name.humanize.capitalize %>
-<% end %>
-
-<% content_for :tab_line_buttons do %>
-
-  <% if controller.model_class.creatable? %>
-
-    <% if controller.model_class.name == 'User' %>
-      <%= link_to setup_user_popup_path,
-        {class: 'btn btn-sm btn-primary', :remote => true, 'data-toggle' =>  "modal",
-          'data-target' => '#user-setup-modal-window', return_to: request.url} do %>
-        <i class="fa fa-fw fa-plus"></i> Add a new user
-      <% end %>
-      <div id="user-setup-modal-window" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>
-    <% elsif controller.controller_name == 'manage_account' %>
-      <%# No add button is needed %>
-    <% else %>
-      <%= button_to({action: 'create'}, {class: 'btn btn-sm btn-primary'}) do %>
-        <i class="fa fa-fw fa-plus"></i>
-        Add a new
-        <%= controller.controller_name.singularize.humanize.downcase %>
-      <% end %>
-    <% end %>
-
-  <% end %>
-
-<% end %>
-
-<%= render partial: 'content', layout: 'content_layout', locals: {pane_list: controller.index_pane_list }%>