Have a new view showing users at /users/storage. No storage info yet, but it's a...
[arvados.git] / apps / workbench / app / views / application / index.html.erb
index 0d7657f51259ac86592b43caf4a83a312ae809ae..3f312405b509813bb88aa3e418c35a32c05ff75a 100644 (file)
@@ -1,50 +1,24 @@
-<% if @objects.empty? %>
-
-<p>
-  No <%= controller.model_class.to_s.underscore.pluralize.gsub '_', ' ' %> to display.
-</p>
+<% content_for :page_title do %>
+<%= controller.model_class.to_s.pluralize.underscore.capitalize.gsub('_', ' ') %>
+<% end %>
 
-<% else %>
+<% content_for :tab_line_buttons do %>
 
-<% attr_blacklist = 'created_at modified_at modified_by_user modified_by_client updated_at' %>
+  <% if controller.model_class.creatable? %>
 
-<table class="table arv-index">
-  <thead>
-    <tr>
-      <% @objects.first.attributes_for_display.each do |attr, attrvalue| %>
-      <% next if attr_blacklist.index attr %>
-      <th class="arv-attr-<%= attr %>">
-        <%= attr.sub /_uuid/, '' %>
-      </th>
-      <% end %>
-    </tr>
-  </thead>
-      
-  <tbody>
-    <% @objects.each do |object| %>
-    <tr>
-      <% object.attributes_for_display.each do |attr, attrvalue| %>
-      <% next if attr_blacklist.index attr %>
-      <td class="arv-object-<%= object.class.to_s %> arv-attr-<%= attr %>">
-        <% if attr == 'uuid' %>
-        <%= link_to_if_arvados_object object %>
-        <% elsif object.attribute_editable? attr %>
-        <%= render_editable_attribute object, attr %>
-        <% else %>
-        <%= link_to_if_arvados_object attrvalue, {referring_attr: attr, referring_object: @object, with_prefixes: true, with_class_name: true} %>
-        <% end %>
-      </td>
-      <% end %>
-    </tr>
+    <% if controller.model_class.name == 'User' %>
+      <%= link_to "Add a new #{controller.model_class.to_s.underscore.gsub '_', ' '}", setup_user_popup_path,
+        {class: 'btn btn-primary pull-right', :remote => true, 'data-toggle' =>  "modal",
+          'data-target' => '#user-setup-modal-window', return_to: request.url}  %>
+      <div id="user-setup-modal-window" class="modal fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"></div>
+    <% else %>
+      <%= button_to "Add a new #{controller.model_class.to_s.underscore.gsub '_', ' '}",
+        { action: 'create', return_to: request.url },
+        { class: 'btn btn-primary pull-right' } %>
     <% end %>
-  </tbody>
 
-  <tfoot>
-  </tfoot>
-</table>
+  <% end %>
 
 <% end %>
 
-<% if controller.model_class.creatable? %>
-<%= button_to "Add a new #{controller.model_class.to_s.underscore.gsub '_', ' '}", { action: 'create', return_to: './' }, { class: 'btn btn-primary' } %>
-<% end %>
+<%= render partial: 'content', layout: 'content_layout', locals: {pane_list: controller.index_pane_list }%>