Intial revision.
This commit is contained in:
commit
f87492d73e
19 changed files with 607 additions and 0 deletions
20
templates/admin.tpl
Normal file
20
templates/admin.tpl
Normal file
|
@ -0,0 +1,20 @@
|
|||
{foreach from=$module.messages item=message name=messages}
|
||||
{if $smarty.foreach.messages.first}
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>From</th>
|
||||
<th>Subject</th>
|
||||
<th>Received At</th>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr>
|
||||
<td><a href="/message/{$message.id}">{$message.id}</a></td>
|
||||
<td>{$message.sender|htmlentities}</td>
|
||||
<td>{$message.subject}</td>
|
||||
<td>{$message.received_at}</td>
|
||||
</tr>
|
||||
{if $smarty.foreach.messages.last}</table>{/if}
|
||||
{foreachelse}
|
||||
<em>No incoming submissions at this time</em>
|
||||
{/foreach}
|
Loading…
Add table
Add a link
Reference in a new issue