ezmlm-web/template/show_subscription_log.cs

19 lines
419 B
C#
Raw Normal View History

<div class="title">
<h1><?cs var:html_escape(Lang.Title.SubscribeLog) ?></h1>
</div>
<fieldset class="form">
<legend><?cs var:html_escape(Lang.Legend.SubscribeLog) ?> </legend>
<table>
<?cs each:x = Data.List.SubscribeLog ?>
<tr>
<td><?cs var:html_escape(x.address) ?></td>
<td><?cs var:html_escape(x.text) ?></td>
<td><?cs var:html_escape(x.date) ?></td>
</tr>
<?cs /each ?>
</table>
</fieldset>