14988: Fixes functionals tests (WIP)
[arvados.git] / apps / workbench / app / views / application / _show_attributes.html.erb
index 0e8d2a2bd8149ea6c7037b143c3051cd0e18d8c3..c48428e71fbe63cfa3f393f3ee6185691c25a377 100644 (file)
@@ -1 +1,17 @@
-<%= render partial: 'arvados_object' %>
+<%# Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 %>
+
+<%= form_for @object do |f| %>
+<table class="table topalign">
+  <thead>
+  </thead>
+  <tbody>
+    <% @object.attributes_for_display.each do |attr, attrvalue| %>
+    <%= render partial: 'application/arvados_object_attr', locals: { attr: attr, attrvalue: attrvalue } %>
+    <% end %>
+  </tbody>
+</table>
+
+<% end %>
+