<%# (C) COPYRIGHT HELP/SYSTEMS, L.L.C. 2009 %> <% fields_for @job_suite do |fields| %>
<%= fields.label :name, t_label('common.name'), :class => "name-label item-label" %>
<%= fields.text_field :name, :disabled => @view_only, :maxLength => 50, :class => "x-form-field name-field" %>

<%= t('common.name_caption') %>

<%= fields.label :description, t_label('common.description'), :class => "description-label item-label" %>
<%= fields.text_area :description, :disabled => @view_only, :maxLength => 256, :class => "x-form-field description-field", :style => "overflow:auto;height:64px;" %>

<%= t('common.description_caption') %>

<%= fields.label :calendar, t_label('jobs.job.calendar'), :class => "x-form-item label calendar-label" %>
<%= fields.hidden_field :calendar_id %>

<%= t('job_suites.job_suite.calendar_caption') %>

<%= fields.label :timezone_type, t_label('jobs.job.timezone_option'), :class => "x-form-item label calendar-label" %> <%= fields.hidden_field :timezone_type %> <%= fields.hidden_field :timezone %>

<%= t('job_suites.job_suite.timezone_option_caption') %>

<%= fields.label :tag, t_label('common.tags'), :class => "x-form-item label" %>
<%= tags_form_helper(fields, "job_suite[tag_list]", @job_suite.tag_list, {:view_only => @view_only}) %>
<%= fields.label :variable_base_date, t_label('.variable_base_date_option_select'), :class => "x-form-item label item-label" %>
<%= fields.select :variable_base_date, JobSuite.VARIABLE_BASE_DATE_ARRAY, {}, {:id => "variable_base_date", :disabled => @view_only} %>

<%= t('.variable_base_date_option_caption') %>

<% end %>