This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/email_log/user_view.tpl
2008-11-26 14:50:40 -08:00

47 lines
1.8 KiB
Smarty

{if $email_log}
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr valign="top">
<td width="65%" class="table_heading">
<center>
{translate module=email_log}title_user_view{/translate}
</center>
</td>
</tr>
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
<tr class="row1" valign="middle" align="left">
<td width="20%" valign="top">{translate module=email_log}
field_date_orig
{/translate}</td>
<td width="80%">{$list->date_time($email_log.date_orig)}</td>
</tr>
<tr class="row1" valign="middle" align="left">
<td valign="top">{translate module=email_log}
field_email
{/translate}</td>
<td>{$email_log.email}</td>
</tr>
<tr class="row1" valign="middle" align="left">
<td valign="top">{translate module=email_log}
field_subject
{/translate}</td>
<td>{$email_log.subject}</td>
</tr>
<tr class="row1" valign="middle" align="left">
<td valign="top">{translate module=email_log}
field_message
{/translate}</td>
<td> <textarea name="textarea2" cols="65" rows="12" disabled="disabled">{$email_log.message}</textarea></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
{/if}