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

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

<%= fields.label :tag, t_label('common.tags'), :class => "x-form-item label" %>
<%= tags_form_helper(fields, "command_set[tag_list]", @command_set.tag_list, {:view_only => @view_only}) %>
<% end %>