<@fieldSet legend='#i18n{module.workflow.assignment.task_assignment_config.title}'> <@formGroup labelFor='title' labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_title}' mandatory=true> <#assign inputValue=''> <#if config?exists> <#assign inputValue=config.title> <@input type='text' size='sm' name='title' value=inputValue maxlength=255 /> <@formGroup helpKey='#i18n{module.workflow.assignment.task_assignment_config.label_multiple_owner_comment}'> <#assign multipleOwner=config?exists&&config.multipleOwner> <@checkBox name='is_multiple_owner' id='is_multiple_owner' value='1' checked=multipleOwner labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_multiple_owner}' /> <@formGroup labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_workgroups}' helpKey='#i18n{module.workflow.assignment.task_assignment_config.label_workgroups_comment}' > <#list workgroup_list as workgroup> <@checkBox name='workgroups' labelKey=workgroup.item.name value=workgroup.item.code checked=workgroup.config?exists /> #i18n{module.workflow.assignment.task_assignment_config.label_notification} : <#if workgroup.config?exists> <@select name="id_mailing_list_${workgroup.item.code}" items=mailing_list default_value=workgroup.config.idMailingList /> <#else> <@select name="id_mailing_list_${workgroup.item.code}" items=mailing_list default_value="-1" /> <@formGroup> <#assign notify=config?exists&&config.notify> <@checkBox name='is_notify' id='is_notify' value='1' checked=notify labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_notification}' params='onclick="javascript:notification();"'/>
<@formGroup helpKey='#i18n{module.workflow.assignment.task_assignment_config.label_user_name_comment}'> <#assign multipleOwner=config?exists&&config.multipleOwner> <@checkBox name='is_use_user_name' id='is_use_user_name' value='1' checked=config?exists&&config.useUserName labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_user_name}' /> <@formGroup labelFor='subject' labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_subject}' helpKey='#i18n{module.workflow.assignment.task_assignment_config.label_subject_comment}' mandatory=true> <#assign subjectValue=''> <#if config?exists && config.subject?exists> <#assign subjectValue=config.subject> <@input type='text' size='sm' name='subject' value=subjectValue maxlength=255 /> <@formGroup labelFor='message' labelKey='#i18n{module.workflow.assignment.task_assignment_config.label_message}' helpKey='#i18n{module.workflow.assignment.task_assignment_config.label_message_comment}' mandatory=true> <#assign messageValue=''> <#if config?exists && config.message?exists> <#assign messageValue=config.message> <#assign configMessage=''> <#if config?exists && config.message?exists> <#assign configMessage=config.message> <@input type='textarea' name='message'>${configMessage}