123456789101112131415161718192021222324252627 |
- {#template MAIN}
- {#include Information root=$T}
- {#/template MAIN}
- {#template Information}
- <table width="100%" cellpadding="0" cellspacing="0" border="0" style="margin-left: 15px;font-size: 12px; font-weight: normal">
- <tr>
- <td rowspan="2" width="35%" align="center">
- <img src="{examinee.imgUrl}" id="img_examinee" width="90" height="95" onerror="this.src='/App_Themes/Examiner/image/3_39.gif'" />
- </td>
- <td align="left">
-
- </td>
- </tr>
- <tr>
- <td align="left">
- {examinee.name}
- </td>
- </tr>
- <tr>
- <td align="left" colspan="2">
- <br />
- {examinee.dept}
- </td>
- </tr>
- </table>
- {#/template Information}
|