Merge branch 'master' into 2257-inequality-conditions
[arvados.git] / apps / workbench / app / views / pipeline_templates / _show_attributes.html.erb
1 <%= content_for :content_top do %>
2   <h2>Template '<%= @object.name %>'</h2>
3 <% end %>
4
5 <table class="table topalign">
6   <thead>
7   </thead>
8   <tbody>
9     <% @object.attributes_for_display.each do |attr, attrvalue| %>
10       <% if attr != 'components' %>
11         <%= render partial: 'application/arvados_object_attr', locals: { attr: attr, attrvalue: attrvalue } %>
12       <% end %>
13     <% end %>
14   </tbody>
15 </table>