2008-11-05 05:35:47 +00:00
|
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
|
|
|
<table class="gMetadata">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Title:</th>
|
2008-11-08 07:18:56 +00:00
|
|
|
<td><?= $item->title; ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2008-11-08 07:18:56 +00:00
|
|
|
<th>Description:</th>
|
|
|
|
|
<td><?= $item->description; ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2008-11-08 07:18:56 +00:00
|
|
|
<th>Name:</th>
|
|
|
|
|
<td><?= $item->name; ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Owner:</th>
|
2008-11-08 07:18:56 +00:00
|
|
|
<td><a href="#"><?= isset($item->user_id) ? $item->user->name : "anonymous"?></a></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" class="toggle">
|
|
|
|
|
<a href="#">more \/</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|