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