Sha256: ffba375217ffe4fbca2a26f59abd26f77bde17ef31b29212d21767a56de399a5

Contents?: true

Size: 2 KB

Versions: 66

Compression:

Stored size: 2 KB

Contents

<div class="tab-pane" id="template_job">

  <%= field(f, :job_category, :label => _('Job category')) do %>
    <%= auto_complete_search(:job_category,
                             f.object.job_category,
                             :placeholder => _("Job category") + ' ...',
                             :name => 'job_template[job_category]',
                             :id => 'search',
                             :disabled => @template.locked?) %>
  <% end %>

  <%= text_f f, :description_format,
             :disabled => @template.locked?,
             :label_help => description_format_help %>

  <%= select_f f, :provider_type, providers_options, :first, :last, :disabled => @template.locked? %>

  <%= number_f f, :execution_timeout_interval, :disabled => @template.locked?, :label => _('Timeout to kill') %>

  <div class="children_fields">
    <%= new_child_fields_template(f, :foreign_input_sets, { :partial => "template_inputs/foreign_input_set_form" }) %>
    <%= f.fields_for :foreign_input_sets do |ff| %>
      <div class="template_input_form fields">
        <%= render 'template_inputs/foreign_input_set_form', :f => ff %>
      </div>
    <% end %>
    <%= add_child_link '+ ' + _("Add Foreign Input Set"), :foreign_input_sets, { :title => _('add an input set for this template to reference a different template inputs') } unless @template.locked? %>
  </div>

  <div class="children_fields">
    <%= field_set_tag _("Effective user") do %>
      <%= f.fields_for :effective_user, @template.effective_user do |ff| %>
        <div class="effective_user_form fields">
          <%= text_f ff, :value, :disabled => @template.locked? %>
          <%= checkbox_f ff, :current_user, :disabled => @template.locked? %>
          <%= checkbox_f ff, :overridable, :disabled => @template.locked? %>
        </div>
      <% end %>
    <% end %>
  </div>

</div>

<div class="tab-pane" id="template_type">
  <%= checkbox_f f, :snippet, :onchange => "snippet_changed(this)", :label=>_('Snippet'), :disabled => @template.locked? %>
</div>

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
foreman_remote_execution-5.0.8 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.7 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.6 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.5 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.4 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.3 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.2 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.1 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-5.0.0 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.8.0 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.6 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.5 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.4 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.7.0 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.3 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.2 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.1 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.6.0 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.5.0 app/views/job_templates/_custom_tabs.html.erb
foreman_remote_execution-4.4.0 app/views/job_templates/_custom_tabs.html.erb