Sha256: 04c473f9d56eb4c9cc27cc6cb3ac99cc38554998f6c2dfb727c1f2169e463ff1

Contents?: true

Size: 1.07 KB

Versions: 33

Compression:

Stored size: 1.07 KB

Contents

<%= form_for @remote_execution_feature do |f| %>
  <div class="row">
    <%= field(f, :name) { @remote_execution_feature.name } %>
  </div>
  <div class="row">
    <%= field(f, :label) { @remote_execution_feature.label } %>
  </div>
  <div class="row">
    <%= field(f, :description) { @remote_execution_feature.description } %>
  </div>
  <div class="row">
    <%= field(f, :provided_inputs) { @remote_execution_feature.provided_inputs || '' } %>
  </div>
  <div class="row">
    <% job_templates = JobTemplate.authorized(:view_job_templates) %>
    <% if @remote_execution_feature.job_template_id.present? && job_templates.where(:id => @remote_execution_feature.job_template_id).empty? %>
      <div class="alert alert-warning" role="alert">
        <%= _("You are not allowed to see the currently assigned template. Saving the form now would unassign the template.") %>
      </div>
    <% end %>
    <%= selectable_f f, :job_template_id, job_templates.map { |t| [ t.name, t.id ] }, { :include_blank => true }, :class => 'input_type_selector' %>
  </div>
<%= submit_or_cancel f %>
<% end %>

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
foreman_remote_execution-10.1.2 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-12.0.0 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.1.1 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-11.1.1 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-11.1.0 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.1.0 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-11.0.0 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.0.7 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.0.6 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.0.5 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.0.4 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.0.3 app/views/remote_execution_features/_form.html.erb
foreman_remote_execution-10.0.2 app/views/remote_execution_features/_form.html.erb