blob: 543ce3dbed7c213d4ebc3d9a634e8327e73ac243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<table class="gMetadata">
<tbody>
<tr>
<th>Title:</th>
<td><?= $item->title; ?></td>
</tr>
<tr>
<th>Description:</th>
<td><?= $item->description; ?></td>
</tr>
<tr>
<th>Name:</th>
<td><?= $item->name; ?></td>
</tr>
<tr>
<th>Owner:</th>
<td><a href="#"><?= isset($item->user_id) ? $item->user->name : "anonymous"?></a></td>
</tr>
<tr>
<td colspan="2" class="toggle">
<a href="#">more \/</a>
</td>
</tr>
</tbody>
</table>
|