Spaces:
Sleeping
Sleeping
File size: 4,674 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <form id="{$form_id}" name="{$form_name}" action="{$form_action}" class="{$form_className}" method="post" encType="multipart/form-data" style="margin:0px;" onsubmit="return validateForm('{$form_objectRequiredFields}');"> <div class="borderForm" style="width:{$form_width}; padding-left:0; padding-right:0; border-width:{$form_border};">
<div class="boxTop"><div class="a"> </div><div class="b"> </div><div class="c"> </div></div>
<div class="content" style="height:{$form_height};" >
<table width="99%">
<tr>
<td valign='top'>
<input type="hidden" class="notValidateThisFields" name="__notValidateThisFields__" id="__notValidateThisFields__" value="{$form_objectRequiredFields}" />
<input type="hidden" name="DynaformRequiredFields" id="DynaformRequiredFields" value="{$form_objectRequiredFields}" />
<input type="hidden" name="__DynaformName__" id="__DynaformName__" value="{$form_name}" />
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr style="display: none">
<td colspan="2">{$form.isIE}</td>
</tr>
<tr>
<td class='FormTitle' colspan="2" align="">{$form.TITLE1}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$PRO_TITLE}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.PRO_TITLE}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$STATUS}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.STATUS}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$TITLE}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.TITLE}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$APP_NUMBER}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.APP_NUMBER}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$APP_UID}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.APP_UID}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$TAS_TITLE}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.TAS_TITLE}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$DEL_DELEGATE_DATE}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.DEL_DELEGATE_DATE}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$DEL_TASK_DUE_DATE}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.DEL_TASK_DUE_DATE}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$PREVIOUS_TASK}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.PREVIOUS_TASK}</td>
</tr>
<tr>
<td class='FormLabel' width="{$form_labelWidth}">{$PREVIOUS_USER}</td>
<td class='FormFieldContent' width='{$form_fieldContentWidth}' >{$form.PREVIOUS_USER}</td>
</tr>
<tr>
<td class='FormButton' colspan="2" align="">{$form.BTN_CATCH} {$form.BTN_CANCEL}</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div class="boxBottom"><div class="a"> </div><div class="b"> </div><div class="c"> </div></div>
</div>
<script type="text/javascript">
{$form.JS}
</script>
</form>
|