1 <table class="table pipeline-components-table" style="margin-top: -.1em">
3 <col style="width: 15%" />
4 <col style="width: 20%" />
5 <col style="width: 20%" />
6 <col style="width: 45%" />
23 <% @object.components.each do |k, component| %>
24 <% next if !component %>
26 <td><span class="label label-default"><%= k %></span></td>
28 <td><%= render_pipeline_component_attribute (editable && @object), :components, [k, :script], component[:script] %></td>
30 <td>script version</td>
33 <%= render_pipeline_component_attribute (editable && @object), :components, [k, :script_version], component[:script_version] %>
37 <% component[:script_parameters].andand.each do |p, tv| %>
39 <td style="border-top: none"></td>
40 <td style="border-top: none"></td>
42 <td class="property-edit-row"><%= p %></td>
43 <td class="property-edit-row"><%= render_pipeline_component_attribute (editable && @object), :components, [k, :script_parameters, p.to_sym], tv %></td>