Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / views / application / _show_attributes.html.erb
1 <%# Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 %>
4
5 <%= form_for @object do |f| %>
6 <table class="table topalign">
7   <thead>
8   </thead>
9   <tbody>
10     <% @object.attributes_for_display.each do |attr, attrvalue| %>
11     <%= render partial: 'application/arvados_object_attr', locals: { attr: attr, attrvalue: attrvalue } %>
12     <% end %>
13   </tbody>
14 </table>
15
16 <% end %>
17