Sha256: 072ee4a3f0c44c479718c82b226abcde1bdf7c55e2e9340ce8e0aeca783ca182

Contents?: true

Size: 696 Bytes

Versions: 4

Compression:

Stored size: 696 Bytes

Contents

<div id='preview_<%= target.id %>' class='collapse out'>
  <%= preview_box(template_invocation, target) %>
  <% if template_invocation.input_values.present? %>
    <table class='<%= table_css_classes %>'>
      <thead>
        <tr>
          <th><%= _('User input') %></th>
          <th><%= _('Value') %></th>
        </tr>
      </thead>
      <tbody>
      <% template_invocation.input_values.joins(:template_input).each do |input_value| %>
        <tr>
          <td><b><%= input_value.template_input.name %></b></td>
          <td><%= input_value.template_input.hidden_value? ? '*' * 5 : input_value.value %></td>
        </tr>
      <% end %>
      </tbody>
    </table>
  <% end %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
foreman_remote_execution-3.2.0 app/views/job_invocations/_user_input.html.erb
foreman_remote_execution-3.1.0 app/views/job_invocations/_user_input.html.erb
foreman_remote_execution-2.0.10 app/views/job_invocations/_user_input.html.erb
foreman_remote_execution-2.0.9 app/views/job_invocations/_user_input.html.erb