<%# (C) COPYRIGHT HELP/SYSTEMS, L.L.C. 2009 %> <% fields_for @job do |form| purge_option = (@job.job_history_purge_option == SystemSetting::PURGE_BY_RUNS || @job.job_history_purge_option == SystemSetting::PURGE_BY_DAYS) ? @job.job_history_purge_option : SystemSetting::PURGE_BY_RUNS %>
<%= form.check_box :system_defaults_for_job_history_purge, :disabled => @view_only %>

<%= t('jobs.control.use_system_setting_defaults') %>

<%= check_box :job, :job_history_purge, :disabled => @view_only, :class => "" %>

<%= t('jobs.control.remove_older_job_history_runs') %>

<%= form.text_field :job_history_runs_to_keep, :disabled => @view_only || @job.system_defaults_for_job_history_purge, :class => "x-form-field name-field" %>

<%= t('jobs.control.job_history_runs_to_keep_caption') %>

<%= form.text_field :job_history_days_to_keep, :disabled => @view_only || @job.system_defaults_for_job_history_purge, :class => "x-form-field name-field" %>

<%= t 'jobs.control.job_history_days_to_keep_caption' %>

<% end %>