2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<table class="gMetadata">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Title:") ?></th>
|
2008-12-24 00:20:26 +00:00
|
|
|
<td><?= $item->title; ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Description:") ?></th>
|
2008-12-24 00:20:26 +00:00
|
|
|
<td><?= $item->description; ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2008-12-24 00:20:26 +00:00
|
|
|
<? if ($item->id != 1): ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Name:") ?></th>
|
2008-12-24 00:20:26 +00:00
|
|
|
<td><?= $item->name; ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2008-12-24 00:20:26 +00:00
|
|
|
<? endif ?>
|
2008-11-08 07:48:36 +00:00
|
|
|
<? if ($item->owner): ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Owner:") ?></th>
|
2008-11-08 07:48:36 +00:00
|
|
|
<td><a href="#"><?= $item->owner->name ?></a></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2008-11-08 07:48:36 +00:00
|
|
|
<? endif ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|